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

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

‘Zips up’ multiple streams into a single stream of pairs.

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