Enum timely::dataflow::operators::capture::event::Event[][src]

pub enum Event<T, D> {
    Progress(Vec<(T, i64)>),
    Messages(T, Vec<D>),
}

Data and progress events of the captured stream.

Variants

Progress(Vec<(T, i64)>)

Progress received via push_external_progress.

Messages(T, Vec<D>)

Messages received via the data stream.

Trait Implementations

impl<T, D> Abomonation for Event<T, D> where
    Vec<(T, i64)>: Abomonation,
    T: Abomonation,
    Vec<D>: Abomonation,
    D: Abomonation
[src]

impl<T: Clone, D: Clone> Clone for Event<T, D>[src]

impl<T: Debug, D: Debug> Debug for Event<T, D>[src]

impl<T: Eq, D: Eq> Eq for Event<T, D>[src]

impl<T: Hash, D: Hash> Hash for Event<T, D>[src]

impl<T: Ord, D: Ord> Ord for Event<T, D>[src]

impl<T: PartialEq, D: PartialEq> PartialEq<Event<T, D>> for Event<T, D>[src]

impl<T: PartialOrd, D: PartialOrd> PartialOrd<Event<T, D>> for Event<T, D>[src]

impl<T, D> StructuralEq for Event<T, D>[src]

impl<T, D> StructuralPartialEq for Event<T, D>[src]

Auto Trait Implementations

impl<T, D> RefUnwindSafe for Event<T, D> where
    D: RefUnwindSafe,
    T: RefUnwindSafe

impl<T, D> Send for Event<T, D> where
    D: Send,
    T: Send

impl<T, D> Sync for Event<T, D> where
    D: Sync,
    T: Sync

impl<T, D> Unpin for Event<T, D> where
    D: Unpin,
    T: Unpin

impl<T, D> UnwindSafe for Event<T, D> where
    D: UnwindSafe,
    T: UnwindSafe

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: 'static + Clone
[src]

impl<T> Data for T where
    T: 'static + Send + Sync + Any + Abomonation
[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.