Struct fst::map::StreamBuilder[][src]

pub struct StreamBuilder<'m, A = AlwaysMatch>(_);

A builder for constructing range queries on streams.

Once all bounds are set, one should call into_stream to get a Stream.

Bounds are not additive. That is, if ge is called twice on the same builder, then the second setting wins.

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

The 'm lifetime parameter refers to the lifetime of the underlying map.

Implementations

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

pub fn ge<T: AsRef<[u8]>>(self, bound: T) -> StreamBuilder<'m, A>[src]

Specify a greater-than-or-equal-to bound.

pub fn gt<T: AsRef<[u8]>>(self, bound: T) -> StreamBuilder<'m, A>[src]

Specify a greater-than bound.

pub fn le<T: AsRef<[u8]>>(self, bound: T) -> StreamBuilder<'m, A>[src]

Specify a less-than-or-equal-to bound.

pub fn lt<T: AsRef<[u8]>>(self, bound: T) -> StreamBuilder<'m, A>[src]

Specify a less-than bound.

Trait Implementations

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

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

The type of the item emitted by the stream.

type Into = Stream<'m, A>

The type of the stream to be constructed.

fn into_stream(self) -> Stream<'m, A>[src]

Construct a stream from Self.

Auto Trait Implementations

impl<'m, A> RefUnwindSafe for StreamBuilder<'m, A> where
    A: RefUnwindSafe

impl<'m, A> Send for StreamBuilder<'m, A> where
    A: Send

impl<'m, A> Sync for StreamBuilder<'m, A> where
    A: Sync

impl<'m, A> Unpin for StreamBuilder<'m, A> where
    A: Unpin

impl<'m, A> UnwindSafe for StreamBuilder<'m, A> where
    A: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

impl<T> From<T> for T[src]

pub fn from(t: T) -> T[src]

Performs the conversion.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

pub fn into(self) -> U[src]

Performs the conversion.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]

Performs the conversion.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]

Performs the conversion.