pub enum OperatorCategory {
Show 15 variants
Map,
Filter,
Flatten,
Fold,
KeyedFold,
LatticeFold,
Persistence,
MultiIn,
MultiOut,
Source,
Sink,
Control,
CompilerFusionOperator,
Windowing,
Unwindowing,
}
Expand description
Operator categories, for docs.
Variants§
Map
Maps: Simple one-in-one-out operators.
Filter
Filters: One-in zero-or-one-out operators.
Flatten
Flattens: One-in multiple-out operators.
Fold
Folds: Operators which accumulate elements together.
KeyedFold
Keyed Folds: Operators which accumulate elements together by key.
LatticeFold
Lattice Folds: Folds based on lattice-merge.
Persistence
Persistent Operators: Persistent (stateful) operators.
MultiIn
Multi-Input Operators: Operators with multiple inputs.
MultiOut
Multi-Output Operators: Operators with multiple outputs.
Source
Sources: Operators which produce output elements (and consume no inputs).
Sink
Sinks: Operators which consume input elements (and produce no outputs).
Control
Control Flow Operators: Operators which affect control flow/scheduling.
CompilerFusionOperator
Compiler Fusion Operators: Operators which are necessary to implement certain optimizations and rewrite rules.
Windowing
Windowing Operators: Operators for windowing loop
inputs.
Unwindowing
Un-Windowing Operators: Operators for collecting loop
outputs.
Implementations§
Trait Implementations§
Source§impl Clone for OperatorCategory
impl Clone for OperatorCategory
Source§fn clone(&self) -> OperatorCategory
fn clone(&self) -> OperatorCategory
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for OperatorCategory
impl Debug for OperatorCategory
Source§impl DocumentedVariants for OperatorCategory
impl DocumentedVariants for OperatorCategory
Source§fn get_variant_docs(&self) -> &'static str
fn get_variant_docs(&self) -> &'static str
Source§impl Hash for OperatorCategory
impl Hash for OperatorCategory
Source§impl Ord for OperatorCategory
impl Ord for OperatorCategory
Source§fn cmp(&self, other: &OperatorCategory) -> Ordering
fn cmp(&self, other: &OperatorCategory) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Source§impl PartialEq for OperatorCategory
impl PartialEq for OperatorCategory
Source§impl PartialOrd for OperatorCategory
impl PartialOrd for OperatorCategory
impl Copy for OperatorCategory
impl Eq for OperatorCategory
impl StructuralPartialEq for OperatorCategory
Auto Trait Implementations§
impl Freeze for OperatorCategory
impl RefUnwindSafe for OperatorCategory
impl Send for OperatorCategory
impl Sync for OperatorCategory
impl Unpin for OperatorCategory
impl UnwindSafe for OperatorCategory
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more