Enum differential_dataflow::logging::DifferentialEvent [−][src]
pub enum DifferentialEvent {
Batch(BatchEvent),
Merge(MergeEvent),
MergeShortfall(MergeShortfall),
}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
impl Debug for DifferentialEvent[src]
impl Debug for DifferentialEventfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl Clone for DifferentialEvent[src]
impl Clone for DifferentialEventfn clone(&self) -> DifferentialEvent[src]
fn clone(&self) -> DifferentialEventReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)Performs copy-assignment from source. Read more
impl Abomonation for DifferentialEvent[src]
impl Abomonation for DifferentialEventunsafe fn entomb<W: Write>(&self, _write: &mut W) -> Result<()>[src]
unsafe fn entomb<W: Write>(&self, _write: &mut W) -> Result<()>Write any additional information about &self beyond its binary representation. Read more
fn extent(&self) -> usize[src]
fn extent(&self) -> usizeReports the number of further bytes required to entomb self.
unsafe fn exhume<'a, 'b>(
&'a mut self,
bytes: &'b mut [u8]
) -> Option<&'b mut [u8]>[src]
unsafe fn exhume<'a, 'b>(
&'a mut self,
bytes: &'b mut [u8]
) -> Option<&'b mut [u8]>Recover any information for &mut self not evident from its binary representation. Read more
impl Ord for DifferentialEvent[src]
impl Ord for DifferentialEventfn cmp(&self, other: &DifferentialEvent) -> Ordering[src]
fn cmp(&self, other: &DifferentialEvent) -> OrderingThis method returns an Ordering between self and other. Read more
fn max(self, other: Self) -> Self1.21.0[src]
fn max(self, other: Self) -> SelfCompares and returns the maximum of two values. Read more
fn min(self, other: Self) -> Self1.21.0[src]
fn min(self, other: Self) -> SelfCompares and returns the minimum of two values. Read more
impl PartialOrd for DifferentialEvent[src]
impl PartialOrd for DifferentialEventfn partial_cmp(&self, other: &DifferentialEvent) -> Option<Ordering>[src]
fn partial_cmp(&self, other: &DifferentialEvent) -> Option<Ordering>This method returns an ordering between self and other values if one exists. Read more
fn lt(&self, other: &DifferentialEvent) -> bool[src]
fn lt(&self, other: &DifferentialEvent) -> boolThis method tests less than (for self and other) and is used by the < operator. Read more
fn le(&self, other: &DifferentialEvent) -> bool[src]
fn le(&self, other: &DifferentialEvent) -> boolThis method tests less than or equal to (for self and other) and is used by the <= operator. Read more
fn gt(&self, other: &DifferentialEvent) -> bool[src]
fn gt(&self, other: &DifferentialEvent) -> boolThis method tests greater than (for self and other) and is used by the > operator. Read more
fn ge(&self, other: &DifferentialEvent) -> bool[src]
fn ge(&self, other: &DifferentialEvent) -> boolThis method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
impl Eq for DifferentialEvent[src]
impl Eq for DifferentialEventimpl PartialEq for DifferentialEvent[src]
impl PartialEq for DifferentialEventfn eq(&self, other: &DifferentialEvent) -> bool[src]
fn eq(&self, other: &DifferentialEvent) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &DifferentialEvent) -> bool[src]
fn ne(&self, other: &DifferentialEvent) -> boolThis method tests for !=.
impl From<BatchEvent> for DifferentialEvent[src]
impl From<BatchEvent> for DifferentialEventfn from(e: BatchEvent) -> Self[src]
fn from(e: BatchEvent) -> SelfPerforms the conversion.
impl From<MergeEvent> for DifferentialEvent[src]
impl From<MergeEvent> for DifferentialEventfn from(e: MergeEvent) -> Self[src]
fn from(e: MergeEvent) -> SelfPerforms the conversion.
impl From<MergeShortfall> for DifferentialEvent[src]
impl From<MergeShortfall> for DifferentialEventfn from(e: MergeShortfall) -> Self[src]
fn from(e: MergeShortfall) -> SelfPerforms the conversion.
Auto Trait Implementations
impl Send for DifferentialEvent
impl Send for DifferentialEventimpl Sync for DifferentialEvent
impl Sync for DifferentialEvent