Struct fst::set::StreamBuilder
[−]
[src]
pub struct StreamBuilder<'s, A = AlwaysMatch>(_);
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 's lifetime parameter refers to the lifetime of the underlying set.
Methods
impl<'s, A: Automaton> StreamBuilder<'s, A>[src]
pub fn ge<T: AsRef<[u8]>>(self, bound: T) -> Self[src]
Specify a greater-than-or-equal-to bound.
pub fn gt<T: AsRef<[u8]>>(self, bound: T) -> Self[src]
Specify a greater-than bound.
pub fn le<T: AsRef<[u8]>>(self, bound: T) -> Self[src]
Specify a less-than-or-equal-to bound.
pub fn lt<T: AsRef<[u8]>>(self, bound: T) -> Self[src]
Specify a less-than bound.