[−][src]Struct tantivy_fst::map::StreamWithStateBuilder
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
impl<'m, 'a, A: 'a + Automaton> IntoStreamer<'a> for StreamWithStateBuilder<'m, A> where
A::State: Clone,
[src]
A::State: Clone,
Auto Trait Implementations
impl<'m, A> RefUnwindSafe for StreamWithStateBuilder<'m, A> where
A: RefUnwindSafe,
A: RefUnwindSafe,
impl<'m, A> Send for StreamWithStateBuilder<'m, A> where
A: Send,
A: Send,
impl<'m, A> Sync for StreamWithStateBuilder<'m, A> where
A: Sync,
A: Sync,
impl<'m, A> Unpin for StreamWithStateBuilder<'m, A> where
A: Unpin,
A: Unpin,
impl<'m, A> UnwindSafe for StreamWithStateBuilder<'m, A> where
A: UnwindSafe,
A: UnwindSafe,
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,