pub trait EventIterator<T, D>: EventIteratorCore<T, Vec<D>> {
    // Required method
    fn next(&mut self) -> Option<&Event<T, D>>;
}
Expand description

A EventIteratorCore specialized to vector-based containers.

Required Methods§

source

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

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

Implementors§

source§

impl<T, D, E: EventIteratorCore<T, Vec<D>>> EventIterator<T, D> for E