tantivy_fst::map

Struct StreamWithStateBuilder

Source
pub struct StreamWithStateBuilder<'m, A = AlwaysMatch>(/* private fields */);
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§

Source§

impl<'m, 'a, A: 'a + Automaton> IntoStreamer<'a> for StreamWithStateBuilder<'m, A>
where A::State: Clone,

Source§

type Item = (&'a [u8], u64, <A as Automaton>::State)

The type of the item emitted by the stream.
Source§

type Into = StreamWithState<'m, A>

The type of the stream to be constructed.
Source§

fn into_stream(self) -> Self::Into

Construct a stream from Self.

Auto Trait Implementations§

§

impl<'m, A> Freeze for StreamWithStateBuilder<'m, A>
where A: Freeze,

§

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§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

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

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

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

Performs the conversion.