pub trait StreamingIteratorExt<'a, T> {
    fn next<S: Into<Supercow<'a, Self>>>(s: S) -> Option<T>
    where
        Self: Sized + 'a
; }

Required Methods§

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

Implementors§