pub struct JoinStream<L, R> { /* private fields */ }
Expand description
A stream joining two or more streams.
This stream is returned by join!
.
Trait Implementations§
Source§impl<L, R, T> Stream for JoinStream<L, R>
impl<L, R, T> Stream for JoinStream<L, R>
impl<L, R> Unpin for JoinStream<L, R>
Auto Trait Implementations§
impl<L, R> Freeze for JoinStream<L, R>
impl<L, R> RefUnwindSafe for JoinStream<L, R>where
L: RefUnwindSafe,
R: RefUnwindSafe,
impl<L, R> Send for JoinStream<L, R>
impl<L, R> Sync for JoinStream<L, R>
impl<L, R> UnwindSafe for JoinStream<L, R>where
L: UnwindSafe,
R: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more