Struct tantivy_fst::raw::StreamBuilder
source · pub struct StreamBuilder<'f, A = AlwaysMatch> { /* private fields */ }
Expand description
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 'f
lifetime parameter refers to the lifetime of the underlying fst.
Implementations§
source§impl<'f, A: Automaton> StreamBuilder<'f, A>
impl<'f, A: Automaton> StreamBuilder<'f, A>
sourcepub fn with_state(self) -> StreamWithStateBuilder<'f, A>
pub fn with_state(self) -> StreamWithStateBuilder<'f, A>
Return this builder and gives the automaton states along with the results.
Trait Implementations§
Auto Trait Implementations§
impl<'f, A> RefUnwindSafe for StreamBuilder<'f, A>where A: RefUnwindSafe,
impl<'f, A> Send for StreamBuilder<'f, A>where A: Send,
impl<'f, A> Sync for StreamBuilder<'f, A>where A: Sync,
impl<'f, A> Unpin for StreamBuilder<'f, A>where A: Unpin,
impl<'f, A> UnwindSafe for StreamBuilder<'f, A>where A: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more