Struct fst::raw::Stream [] [src]

pub struct Stream<'f, A = AlwaysMatch> where A: Automaton {
    // some fields omitted
}

Trait Implementations

impl<'f, 'a, A: Automaton> Streamer<'a> for Stream<'f, A>
[src]

type Item = (&'a [u8], Output)

The type of the item emitted by this stream.

fn next(&'a mut self) -> Option<Self::Item>

Emits the next element in this stream, or None to indicate the stream has been exhausted. Read more