pub struct ReuniteError<T>(pub SplitSink<T>, pub SplitStream<T>)
where
T: Sink;
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>
§1: SplitStream<T>
Trait Implementations§
Source§impl<T> Debug for ReuniteError<T>where
T: Sink,
impl<T> Debug for ReuniteError<T>where
T: Sink,
Source§impl<T> Display for ReuniteError<T>where
T: Sink,
impl<T> Display for ReuniteError<T>where
T: Sink,
Source§impl<T> Error for ReuniteError<T>
impl<T> Error for ReuniteError<T>
Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
Auto Trait Implementations§
impl<T> Freeze for ReuniteError<T>
impl<T> !RefUnwindSafe for ReuniteError<T>
impl<T> Send for ReuniteError<T>
impl<T> Sync for ReuniteError<T>
impl<T> Unpin for ReuniteError<T>
impl<T> !UnwindSafe for ReuniteError<T>
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more