pub trait Chain {
    type Item;
    type Stream: Stream<Item = Self::Item>;

    fn chain(self) -> Self::Stream;
}
Expand description

Takes multiple streams and creates a new stream over all in sequence.

Required Associated Types

What’s the return type of our stream?

What stream do we return?

Required Methods

Combine multiple streams into a single stream.

Implementations on Foreign Types

Implementors