Trait fst::IntoStream
[−]
[src]
pub trait IntoStream<'a> {
type Item: 'a;
type Into: Stream<'a, Item=Self::Item>;
fn into_stream(self) -> Self::Into;
}IntoStream describes types that can be converted to streams.
This is analogous to the IntoIterator trait for Iterator in
std::iter.
Associated Types
Required Methods
fn into_stream(self) -> Self::Into
Implementors
impl<'a, 'f> IntoStream<'a> for &'f Fstimpl<'a, 'f, A: Automaton> IntoStream<'a> for FstStreamBuilder<'f, A>impl<'s, 'a> IntoStream<'a> for &'s Setimpl<'s, 'a, A: Automaton> IntoStream<'a> for SetStreamBuilder<'s, A>impl<'a, S: Stream<'a>> IntoStream<'a> for S