Enum differential_dataflow::logging::DifferentialEvent[][src]

pub enum DifferentialEvent {
    Batch(BatchEvent),
    Merge(MergeEvent),
    MergeShortfall(MergeShortfall),
}

Possible different differential events.

Variants

Batch creation.

Merge start and stop events.

A merge failed to complete in time.

Trait Implementations

impl Debug for DifferentialEvent
[src]

Formats the value using the given formatter. Read more

impl Clone for DifferentialEvent
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Abomonation for DifferentialEvent
[src]

Write any additional information about &self beyond its binary representation. Read more

Reports the number of further bytes required to entomb self.

Recover any information for &mut self not evident from its binary representation. Read more

impl Ord for DifferentialEvent
[src]

This method returns an Ordering between self and other. Read more

Compares and returns the maximum of two values. Read more

Compares and returns the minimum of two values. Read more

impl PartialOrd for DifferentialEvent
[src]

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This 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 PartialEq for DifferentialEvent
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl From<BatchEvent> for DifferentialEvent
[src]

Performs the conversion.

impl From<MergeEvent> for DifferentialEvent
[src]

Performs the conversion.

impl From<MergeShortfall> for DifferentialEvent
[src]

Performs the conversion.

Auto Trait Implementations