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

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

Possible different differential events.

Variants

Batch(BatchEvent)

Batch creation.

Merge(MergeEvent)

Merge start and stop events.

Drop(DropEvent)

Batch dropped when trace dropped.

MergeShortfall(MergeShortfall)

A merge failed to complete in time.

TraceShare(TraceShare)

Trace sharing event.

Trait Implementations

impl Abomonation for DifferentialEvent[src]

impl Clone for DifferentialEvent[src]

impl Debug for DifferentialEvent[src]

impl Eq for DifferentialEvent[src]

impl From<BatchEvent> for DifferentialEvent[src]

impl From<DropEvent> for DifferentialEvent[src]

impl From<MergeEvent> for DifferentialEvent[src]

impl From<MergeShortfall> for DifferentialEvent[src]

impl From<TraceShare> for DifferentialEvent[src]

impl Ord for DifferentialEvent[src]

impl PartialEq<DifferentialEvent> for DifferentialEvent[src]

impl PartialOrd<DifferentialEvent> for DifferentialEvent[src]

impl StructuralEq for DifferentialEvent[src]

impl StructuralPartialEq for DifferentialEvent[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Data for T where
    T: Ord + Debug + Data
[src]

impl<T> Data for T where
    T: 'static + Send + Sync + Any + Abomonation

impl<T> Data for T where
    T: 'static + Clone
[src]

impl<T> ExchangeData for T where
    T: Ord + Debug + ExchangeData
[src]

impl<T> ExchangeData for T where
    T: Data + Data, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ProgressEventTimestamp for T where
    T: Data + Any + Debug
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.