[][src]Trait generic_std::StreamingIterator

pub trait StreamingIterator {
    type H1Item: for<'a> PlugLifetime<'a>;
    fn next(&mut self) -> Option<<Self::H1Item as PlugLifetime<'_>>::T>;
}

Trait for iterators that can return elements borrowed from itself.

Associated Types

type H1Item: for<'a> PlugLifetime<'a>

HTK item with a lifetime slot.

Loading content...

Required methods

fn next(&mut self) -> Option<<Self::H1Item as PlugLifetime<'_>>::T>

Loading content...

Implementors

impl<I> StreamingIterator for I where
    I: Iterator
[src]

type H1Item = H0<I::Item>

Loading content...