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§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.