pub struct SubStream<I> { /* private fields */ }
Expand description
A SubStream
wraps an inner stream and keeps its latest value cached inline for comparison
with the cached values of other SubStream
s, allowing for semi-ordered merging of streams.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<I> Freeze for SubStream<I>where
I: Freeze,
impl<I> !RefUnwindSafe for SubStream<I>
impl<I> Send for SubStream<I>where
I: Send,
impl<I> !Sync for SubStream<I>
impl<I> Unpin for SubStream<I>where
I: Unpin,
impl<I> !UnwindSafe for SubStream<I>
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