[−][src]Trait fst::IntoStreamer
IntoStreamer describes types that can be converted to streams.
This is analogous to the IntoIterator trait for Iterator in
std::iter.
Associated Types
type Item: 'a
The type of the item emitted by the stream.
type Into: Streamer<'a, Item = Self::Item>
The type of the stream to be constructed.
Required methods
fn into_stream(self) -> Self::Into
Construct a stream from Self.