pub trait StreamingIterator {
type H1Item: for<'a> PlugLifetime<'a>;
// Required method
fn next(&mut self) -> Option<<Self::H1Item as PlugLifetime<'_>>::T>;
}
Expand description
Trait for iterators that can return elements borrowed from itself.
Required Associated Types§
Sourcetype H1Item: for<'a> PlugLifetime<'a>
type H1Item: for<'a> PlugLifetime<'a>
HTK item with a lifetime slot.