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 received via push_external_progress.

Messages received via the data stream.

Trait Implementations

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

[src]

Formats the value using the given formatter.

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

[src]

Perform any final edits before committing &mut self. Importantly, this method should only manipulate the fields of self; any owned memory may not be valid. Read more

[src]

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

[src]

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