pub enum DelayType {
Stratum,
MonotoneAccum,
Tick,
TickLazy,
}
Expand description
The delay (soft barrier) type, for each input to an operator if needed.
Variants§
Stratum
Input must be collected over the preceeding stratum.
MonotoneAccum
Monotone accumulation: can delay to reduce flow rate, but also correct to emit “early”
Tick
Input must be collected over the previous tick.
TickLazy
Input must be collected over the previous tick but also not cause a new tick to occur.
Trait Implementations§
source§impl Ord for DelayType
impl Ord for DelayType
source§impl PartialOrd for DelayType
impl PartialOrd for DelayType
impl Copy for DelayType
impl Eq for DelayType
impl StructuralPartialEq for DelayType
Auto Trait Implementations§
impl Freeze for DelayType
impl RefUnwindSafe for DelayType
impl Send for DelayType
impl Sync for DelayType
impl Unpin for DelayType
impl UnwindSafe for DelayType
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