[][src]Struct lindera_fst::raw::StreamWithStateBuilder

pub struct StreamWithStateBuilder<'f, A = AlwaysMatch>(_);

A builder for constructing range queries of streams that returns results along with automaton states.

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

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 'f lifetime parameter refers to the lifetime of the underlying fst.

Trait Implementations

impl<'a, 'f, A: 'a + Automaton> IntoStreamer<'a> for StreamWithStateBuilder<'f, A> where
    A::State: Clone
[src]

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

The type of the item emitted by the stream.

type Into = StreamWithState<'f, A>

The type of the stream to be constructed.

Auto Trait Implementations

impl<'f, A> RefUnwindSafe for StreamWithStateBuilder<'f, A> where
    A: RefUnwindSafe

impl<'f, A> Send for StreamWithStateBuilder<'f, A> where
    A: Send

impl<'f, A> Sync for StreamWithStateBuilder<'f, A> where
    A: Sync

impl<'f, A> Unpin for StreamWithStateBuilder<'f, A> where
    A: Unpin

impl<'f, A> UnwindSafe for StreamWithStateBuilder<'f, A> where
    A: UnwindSafe

Blanket Implementations

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

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

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

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

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

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.

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.