Struct futures_util::stream::ReuniteError
source · [−]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
sourceimpl<T, Item> Debug for ReuniteError<T, Item>
impl<T, Item> Debug for ReuniteError<T, Item>
sourceimpl<T, Item> Display for ReuniteError<T, Item>
impl<T, Item> Display for ReuniteError<T, Item>
sourceimpl<T: Any, Item> Error for ReuniteError<T, Item>
impl<T: Any, Item> Error for ReuniteError<T, Item>
1.30.0 · sourcefn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · sourcefn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Auto Trait Implementations
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
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more