pub struct ReuniteError(pub OwnedReadHalf, pub OwnedWriteHalf);
Expand description
Error indicating that two halves were not from the same socket, and thus could not be reunited.
Tuple Fields
0: OwnedReadHalf
1: OwnedWriteHalf
Trait Implementations
sourceimpl Debug for ReuniteError
impl Debug for ReuniteError
sourceimpl Display for ReuniteError
impl Display for ReuniteError
sourceimpl Error for ReuniteError
impl Error for ReuniteError
1.30.0fn 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.0fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0fn cause(&self) -> Option<&dyn Error>
fn cause(&self) -> Option<&dyn Error>
👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
Auto Trait Implementations
impl RefUnwindSafe for ReuniteError
impl Send for ReuniteError
impl Sync for ReuniteError
impl Unpin for ReuniteError
impl UnwindSafe for ReuniteError
Blanket Implementations
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstablefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more