Struct tantivy_fst::map::StreamWithStateBuilder
source · [−]pub struct StreamWithStateBuilder<'m, A = AlwaysMatch>(_);
Expand description
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 'm
lifetime parameter refers to the lifetime of the underlying map.
Trait Implementations
sourceimpl<'m, 'a, A: 'a + Automaton> IntoStreamer<'a> for StreamWithStateBuilder<'m, A>where
A::State: Clone,
impl<'m, 'a, A: 'a + Automaton> IntoStreamer<'a> for StreamWithStateBuilder<'m, A>where
A::State: Clone,
type Into = StreamWithState<'m, A>
type Into = StreamWithState<'m, A>
The type of the stream to be constructed.
sourcefn into_stream(self) -> Self::Into
fn into_stream(self) -> Self::Into
Construct a stream from
Self
.Auto Trait Implementations
impl<'m, A> RefUnwindSafe for StreamWithStateBuilder<'m, A>where
A: RefUnwindSafe,
impl<'m, A> Send for StreamWithStateBuilder<'m, A>where
A: Send,
impl<'m, A> Sync for StreamWithStateBuilder<'m, A>where
A: Sync,
impl<'m, A> Unpin for StreamWithStateBuilder<'m, A>where
A: Unpin,
impl<'m, A> UnwindSafe for StreamWithStateBuilder<'m, A>where
A: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more