pub trait StreamingIterator<'a, T> {
    fn next(&'a mut self) -> Option<T>;
}
Expand description

A streaming iterator, as found in https://github.com/emk/rust-streaming

Required Methods§

Return either the next item in the sequence, or None if all items have been consumed.

Implementors§