[][src]Trait stream_flatten_iters::StreamExt

pub trait StreamExt: Stream {
    fn flatten_iters(self) -> FlattenIters<Self>
    where
        Self::Item: IntoIterator,
        Self: Sized
, { ... } }

An extension trait for Streams that provides a variety of convenient combinator functions.

Provided methods

fn flatten_iters(self) -> FlattenIters<Self> where
    Self::Item: IntoIterator,
    Self: Sized

Flattens a stream of iterators into one continuous stream.

Loading content...

Implementors

impl<T: ?Sized> StreamExt for T where
    T: Stream
[src]

Loading content...