pub struct ReuniteError<T: Sink>(pub SplitSink<T>, 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 reunited.
Tuple Fields§
§0: SplitSink<T>§1: SplitStream<T>Trait Implementations§
Source§impl<T: Sink> Debug for ReuniteError<T>
impl<T: Sink> Debug for ReuniteError<T>
Source§impl<T: Sink> Display for ReuniteError<T>
impl<T: Sink> Display for ReuniteError<T>
Source§impl<T: Any + Sink> Error for ReuniteError<T>
impl<T: Any + Sink> 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