pub enum DifferentialEventReference<R0, R1, R2, R3, R4, R5> {
Batch(R0),
Merge(R1),
Drop(R2),
MergeShortfall(R3),
TraceShare(R4),
Batcher(R5),
}
Expand description
Reference for an enum.
Variants§
Batch(R0)
Enum variant for #names.
Merge(R1)
Enum variant for #names.
Drop(R2)
Enum variant for #names.
MergeShortfall(R3)
Enum variant for #names.
Enum variant for #names.
Batcher(R5)
Enum variant for #names.
Trait Implementations§
Source§impl<R0: Clone, R1: Clone, R2: Clone, R3: Clone, R4: Clone, R5: Clone> Clone for DifferentialEventReference<R0, R1, R2, R3, R4, R5>
impl<R0: Clone, R1: Clone, R2: Clone, R3: Clone, R4: Clone, R5: Clone> Clone for DifferentialEventReference<R0, R1, R2, R3, R4, R5>
Source§fn clone(&self) -> DifferentialEventReference<R0, R1, R2, R3, R4, R5>
fn clone(&self) -> DifferentialEventReference<R0, R1, R2, R3, R4, R5>
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<R0: Debug, R1: Debug, R2: Debug, R3: Debug, R4: Debug, R5: Debug> Debug for DifferentialEventReference<R0, R1, R2, R3, R4, R5>
impl<R0: Debug, R1: Debug, R2: Debug, R3: Debug, R4: Debug, R5: Debug> Debug for DifferentialEventReference<R0, R1, R2, R3, R4, R5>
Source§impl<C0, C1, C2, C3, C4, C5, R0, R1, R2, R3, R4, R5> Push<DifferentialEventReference<R0, R1, R2, R3, R4, R5>> for DifferentialEventContainer<C0, C1, C2, C3, C4, C5>
impl<C0, C1, C2, C3, C4, C5, R0, R1, R2, R3, R4, R5> Push<DifferentialEventReference<R0, R1, R2, R3, R4, R5>> for DifferentialEventContainer<C0, C1, C2, C3, C4, C5>
Source§fn push(&mut self, item: DifferentialEventReference<R0, R1, R2, R3, R4, R5>)
fn push(&mut self, item: DifferentialEventReference<R0, R1, R2, R3, R4, R5>)
Pushes an item onto
self
.Source§fn extend(&mut self, iter: impl IntoIterator<Item = T>)
fn extend(&mut self, iter: impl IntoIterator<Item = T>)
Pushes elements of an iterator onto
self
.impl<R0: Copy, R1: Copy, R2: Copy, R3: Copy, R4: Copy, R5: Copy> Copy for DifferentialEventReference<R0, R1, R2, R3, R4, R5>
Auto Trait Implementations§
impl<R0, R1, R2, R3, R4, R5> Freeze for DifferentialEventReference<R0, R1, R2, R3, R4, R5>
impl<R0, R1, R2, R3, R4, R5> RefUnwindSafe for DifferentialEventReference<R0, R1, R2, R3, R4, R5>where
R0: RefUnwindSafe,
R1: RefUnwindSafe,
R2: RefUnwindSafe,
R3: RefUnwindSafe,
R4: RefUnwindSafe,
R5: RefUnwindSafe,
impl<R0, R1, R2, R3, R4, R5> Send for DifferentialEventReference<R0, R1, R2, R3, R4, R5>
impl<R0, R1, R2, R3, R4, R5> Sync for DifferentialEventReference<R0, R1, R2, R3, R4, R5>
impl<R0, R1, R2, R3, R4, R5> Unpin for DifferentialEventReference<R0, R1, R2, R3, R4, R5>
impl<R0, R1, R2, R3, R4, R5> UnwindSafe for DifferentialEventReference<R0, R1, R2, R3, R4, R5>where
R0: UnwindSafe,
R1: UnwindSafe,
R2: UnwindSafe,
R3: UnwindSafe,
R4: UnwindSafe,
R5: UnwindSafe,
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§impl<'a, S, T> Semigroup<&'a S> for Twhere
T: Semigroup<S>,
impl<'a, S, T> Semigroup<&'a S> for Twhere
T: Semigroup<S>,
Source§fn plus_equals(&mut self, rhs: &&'a S)
fn plus_equals(&mut self, rhs: &&'a S)
The method of
std::ops::AddAssign
, for types that do not implement AddAssign
.