Struct fst::map::StreamWithStateBuilder[][src]

pub struct StreamWithStateBuilder<'m, A = AlwaysMatch>(_);
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.

Implementations

Specify a greater-than-or-equal-to bound.

Specify a greater-than bound.

Specify a less-than-or-equal-to bound.

Specify a less-than bound.

Trait Implementations

The type of the item emitted by the stream.

The type of the stream to be constructed.

Construct a stream from Self.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.