Enum dfir_lang::graph::ops::OperatorCategory   
source · 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.
See source of Self::description for description of variants.
Variants§
Map
Filter
Flatten
Fold
KeyedFold
LatticeFold
Persistence
MultiIn
MultiOut
Source
Sink
Control
CompilerFusionOperator
Windowing
Unwindowing
Implementations§
Trait Implementations§
source§impl Clone for OperatorCategory
 
impl Clone for OperatorCategory
source§fn clone(&self) -> OperatorCategory
 
fn clone(&self) -> OperatorCategory
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from 
source. Read moresource§impl Debug for OperatorCategory
 
impl Debug for OperatorCategory
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,
Compares and returns the maximum of two values. Read more
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
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
    T: Clone,
 
impl<T> CloneToUninit for Twhere
    T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
 
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)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>
Converts 
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>
Converts 
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