Struct fst::map::StreamBuilder [] [src]

pub struct StreamBuilder<'m, 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 'm lifetime parameter refers to the lifetime of the underlying map.

Methods

impl<'m, A: Automaton> StreamBuilder<'m, A>
[src]

[src]

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

[src]

Specify a greater-than bound.

[src]

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

[src]

Specify a less-than bound.

Trait Implementations

impl<'m, 'a, A: Automaton> IntoStreamer<'a> for StreamBuilder<'m, A>
[src]

The type of the item emitted by the stream.

The type of the stream to be constructed.

[src]

Construct a stream from Self.