pub struct ReuniteError<T, Item>(pub SplitSink<T, Item>, pub SplitStream<T>);
Expand description
Error indicating a SplitSink<S>
and SplitStream<S>
were not two halves
of a Stream + Split
, and thus could not be reunite
d.
Tuple Fields§
§0: SplitSink<T, Item>
§1: SplitStream<T>
Trait Implementations§
Source§impl<T, Item> Debug for ReuniteError<T, Item>
impl<T, Item> Debug for ReuniteError<T, Item>
Auto Trait Implementations§
impl<T, Item> Freeze for ReuniteError<T, Item>where
Item: Freeze,
impl<T, Item> !RefUnwindSafe for ReuniteError<T, Item>
impl<T, Item> Send for ReuniteError<T, Item>where
Item: Send,
T: Send,
impl<T, Item> Sync for ReuniteError<T, Item>where
Item: Sync,
T: Send,
impl<T, Item> Unpin for ReuniteError<T, Item>
impl<T, Item> !UnwindSafe for ReuniteError<T, Item>
Blanket Implementations§
§impl<T> Any for Twhere
T: 'static + ?Sized,
impl<T> Any for Twhere
T: 'static + ?Sized,
§impl<T> Borrow<T> for Twhere
T: ?Sized,
impl<T> Borrow<T> for Twhere
T: ?Sized,
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more