Struct fst::raw::FstStreamBuilder [] [src]

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

Methods

impl<'f, A: Automaton> FstStreamBuilder<'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> IntoStream<'a> for FstStreamBuilder<'f, A>
[src]

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

type Into = FstStream<'f, A>

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