Struct fst::set::Stream [] [src]

pub struct Stream<'s, A = AlwaysMatch>(_) where A: Automaton;

A lexicographically ordered stream of keys from a set.

The A type parameter corresponds to an optional automaton to filter the stream. By default, no filtering is done.

The 's lifetime parameter refers to the lifetime of the underlying set.

Trait Implementations

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

type Item = &'a [u8]

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