Struct differential_dataflow::logging::MergeEvent
source · pub struct MergeEvent {
pub operator: usize,
pub scale: usize,
pub length1: usize,
pub length2: usize,
pub complete: Option<usize>,
}Expand description
Either the start or end of a merge event.
Fields
operator: usizeOperator identifier.
scale: usizeWhich order of magnitude.
length1: usizeLength of first trace.
length2: usizeLength of second trace.
complete: Option<usize>None implies a start.
Trait Implementations
sourceimpl Abomonation for MergeEvent
impl Abomonation for MergeEvent
sourceimpl Clone for MergeEvent
impl Clone for MergeEvent
sourcefn clone(&self) -> MergeEvent
fn clone(&self) -> MergeEvent
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 MergeEvent
impl Debug for MergeEvent
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 Ord for MergeEvent
impl Ord for MergeEvent
sourcefn cmp(&self, other: &MergeEvent) -> Ordering
fn cmp(&self, other: &MergeEvent) -> 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<MergeEvent> for MergeEvent
impl PartialEq<MergeEvent> for MergeEvent
sourcefn eq(&self, other: &MergeEvent) -> bool
fn eq(&self, other: &MergeEvent) -> bool
sourceimpl PartialOrd<MergeEvent> for MergeEvent
impl PartialOrd<MergeEvent> for MergeEvent
sourcefn partial_cmp(&self, other: &MergeEvent) -> Option<Ordering>
fn partial_cmp(&self, other: &MergeEvent) -> 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 MergeEvent
impl StructuralEq for MergeEvent
impl StructuralPartialEq for MergeEvent
Auto Trait Implementations
impl RefUnwindSafe for MergeEvent
impl Send for MergeEvent
impl Sync for MergeEvent
impl Unpin for MergeEvent
impl UnwindSafe for MergeEvent
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