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.

This method is not simply an iterator because of the lifetime in the result.

Required methods

fn next(&mut self) -> Option<&Event<T, D>>[src]

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

Loading content...

Implementations on Foreign Types

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

Loading content...

Implementors

impl<T: Abomonation, D: Abomonation, R: Read> EventIterator<T, D> for EventReader<T, D, R>[src]

Loading content...