Trait timely::dataflow::operators::capture::event::EventIterator [] [src]

pub trait EventIterator<T, D> {
    fn next(&mut self) -> Option<&Event<T, D>>;
}

Iterates over contained Event<T, D>.

The EventIterator trait describes types that can iterate over references to events, and which can be used to replay a stream into a new timely dataflow computation.

Required Methods

Iterates over references to Event<T, D> elements.

Implementations on Foreign Types

impl<T, D> EventIterator<T, D> for Rc<EventLink<T, D>>
[src]

[src]

Implementors