Struct fst::raw::StreamBuilder [] [src]

pub struct StreamBuilder<'a, A = AlwaysMatch> {
    // some fields omitted
}

Methods

impl<'f, A: Automaton> StreamBuilder<'f, A>
[src]

fn ge<T: AsRef<[u8]>>(self, bound: T) -> Self

fn gt<T: AsRef<[u8]>>(self, bound: T) -> Self

fn le<T: AsRef<[u8]>>(self, bound: T) -> Self

fn lt<T: AsRef<[u8]>>(self, bound: T) -> Self

Trait Implementations

impl<'a, 'f, A: Automaton> IntoStreamer<'a> for StreamBuilder<'f, A>
[src]

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

The type of the item emitted by the stream.

type Into = Stream<'f, A>

The type of the stream to be constructed.

fn into_stream(self) -> Stream<'f, A>

Construct a stream from Self.