pub enum DifferentialEvent {
Batch(BatchEvent),
Merge(MergeEvent),
MergeShortfall(MergeShortfall),
}Expand description
Possible different differential events.
Variants
Batch(BatchEvent)
Batch creation.
Merge(MergeEvent)
Merge start and stop events.
MergeShortfall(MergeShortfall)
A merge failed to complete in time.
Trait Implementations
sourceimpl Abomonation for DifferentialEvent
impl Abomonation for DifferentialEvent
sourceimpl Clone for DifferentialEvent
impl Clone for DifferentialEvent
sourcefn clone(&self) -> DifferentialEvent
fn clone(&self) -> DifferentialEvent
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for DifferentialEvent
impl Debug for DifferentialEvent
sourceimpl From<BatchEvent> for DifferentialEvent
impl From<BatchEvent> for DifferentialEvent
sourcefn from(e: BatchEvent) -> Self
fn from(e: BatchEvent) -> Self
Converts to this type from the input type.
sourceimpl From<MergeEvent> for DifferentialEvent
impl From<MergeEvent> for DifferentialEvent
sourcefn from(e: MergeEvent) -> Self
fn from(e: MergeEvent) -> Self
Converts to this type from the input type.
sourceimpl From<MergeShortfall> for DifferentialEvent
impl From<MergeShortfall> for DifferentialEvent
sourcefn from(e: MergeShortfall) -> Self
fn from(e: MergeShortfall) -> Self
Converts to this type from the input type.
sourceimpl Ord for DifferentialEvent
impl Ord for DifferentialEvent
sourcefn cmp(&self, other: &DifferentialEvent) -> Ordering
fn cmp(&self, other: &DifferentialEvent) -> Ordering
1.21.0 · sourcefn 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
1.21.0 · sourcefn min(self, other: Self) -> Selfwhere
Self: Sized,
fn min(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the minimum of two values. Read more
1.50.0 · sourcefn clamp(self, min: Self, max: Self) -> Selfwhere
Self: Sized + PartialOrd<Self>,
fn clamp(self, min: Self, max: Self) -> Selfwhere
Self: Sized + PartialOrd<Self>,
Restrict a value to a certain interval. Read more
sourceimpl PartialEq<DifferentialEvent> for DifferentialEvent
impl PartialEq<DifferentialEvent> for DifferentialEvent
sourcefn eq(&self, other: &DifferentialEvent) -> bool
fn eq(&self, other: &DifferentialEvent) -> bool
sourceimpl PartialOrd<DifferentialEvent> for DifferentialEvent
impl PartialOrd<DifferentialEvent> for DifferentialEvent
sourcefn partial_cmp(&self, other: &DifferentialEvent) -> Option<Ordering>
fn partial_cmp(&self, other: &DifferentialEvent) -> Option<Ordering>
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self and other) and is used by the <=
operator. Read moreimpl Eq for DifferentialEvent
impl StructuralEq for DifferentialEvent
impl StructuralPartialEq for DifferentialEvent
Auto Trait Implementations
impl RefUnwindSafe for DifferentialEvent
impl Send for DifferentialEvent
impl Sync for DifferentialEvent
impl Unpin for DifferentialEvent
impl UnwindSafe for DifferentialEvent
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more