Trait tantivy_fst::IntoStreamer
source · pub trait IntoStreamer<'a> {
type Item: 'a;
type Into: Streamer<'a, Item = Self::Item>;
// Required method
fn into_stream(self) -> Self::Into;
}
Expand description
IntoStreamer describes types that can be converted to streams.
This is analogous to the IntoIterator
trait for Iterator
in
std::iter
.
Required Associated Types§
Required Methods§
sourcefn into_stream(self) -> Self::Into
fn into_stream(self) -> Self::Into
Construct a stream from Self
.