Skip to main content

StreamTupleExt

Trait StreamTupleExt 

Source
pub trait StreamTupleExt<I, O>: IntoStreamTuple<I, Output = O> + Sized {
    // Provided method
    fn join(self) -> Stream<I, O::Output>
       where O: IntoJoin<I> { ... }
}
Expand description

Extension of Stream tuples.

Provided Methods§

Source

fn join(self) -> Stream<I, O::Output>
where O: IntoJoin<I>,

Joins a tuple of streams.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

impl<T, I, S> StreamTupleExt<I, S> for T
where T: IntoStreamTuple<I, Output = S>,