pub struct StreamWithStateBuilder<'m, A = AlwaysMatch>(StreamWithStateBuilder<'m, A>);
Expand description
A builder for constructing range queries on streams that include automaton states.
In general, one should use StreamBuilder
unless you have a specific need
for accessing the states of the underlying automaton that is being used to
filter this stream.
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 'm
lifetime parameter refers to the lifetime of the underlying map.
Tuple Fields§
§0: StreamWithStateBuilder<'m, A>
Implementations§
Source§impl<'m, A: Automaton> StreamWithStateBuilder<'m, A>
impl<'m, A: Automaton> StreamWithStateBuilder<'m, A>
Sourcepub fn ge<T: AsRef<[u8]>>(self, bound: T) -> StreamWithStateBuilder<'m, A>
pub fn ge<T: AsRef<[u8]>>(self, bound: T) -> StreamWithStateBuilder<'m, A>
Specify a greater-than-or-equal-to bound.
Sourcepub fn gt<T: AsRef<[u8]>>(self, bound: T) -> StreamWithStateBuilder<'m, A>
pub fn gt<T: AsRef<[u8]>>(self, bound: T) -> StreamWithStateBuilder<'m, A>
Specify a greater-than bound.
Sourcepub fn le<T: AsRef<[u8]>>(self, bound: T) -> StreamWithStateBuilder<'m, A>
pub fn le<T: AsRef<[u8]>>(self, bound: T) -> StreamWithStateBuilder<'m, A>
Specify a less-than-or-equal-to bound.
Sourcepub fn lt<T: AsRef<[u8]>>(self, bound: T) -> StreamWithStateBuilder<'m, A>
pub fn lt<T: AsRef<[u8]>>(self, bound: T) -> StreamWithStateBuilder<'m, A>
Specify a less-than bound.
Trait Implementations§
Source§impl<'m, 'a, A: 'a + Automaton> IntoStreamer<'a> for StreamWithStateBuilder<'m, A>
impl<'m, 'a, A: 'a + Automaton> IntoStreamer<'a> for StreamWithStateBuilder<'m, A>
Source§type Item = (&'a [u8], u64, <A as Automaton>::State)
type Item = (&'a [u8], u64, <A as Automaton>::State)
The type of the item emitted by the stream.
Source§type Into = StreamWithState<'m, A>
type Into = StreamWithState<'m, A>
The type of the stream to be constructed.
Source§fn into_stream(self) -> StreamWithState<'m, A>
fn into_stream(self) -> StreamWithState<'m, A>
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> 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