[][src]Trait stream_flatten_iters::TryStreamExt

pub trait TryStreamExt: TryStream {
    fn try_flatten_iters(self) -> TryFlattenIters<Self>
    where
        Self::Ok: IntoIterator,
        <Self::Ok as IntoIterator>::IntoIter: Unpin,
        Self: Sized
, { ... } }

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

Provided methods

fn try_flatten_iters(self) -> TryFlattenIters<Self> where
    Self::Ok: IntoIterator,
    <Self::Ok as IntoIterator>::IntoIter: Unpin,
    Self: Sized

Flattens a stream of iterators into one continuous stream.

Loading content...

Implementors

impl<S: ?Sized + TryStream> TryStreamExt for S[src]

Loading content...