Struct futures::io::ReuniteError [−][src]
Expand description
Error indicating a ReadHalf<T> and WriteHalf<T> were not two halves
of a AsyncRead + AsyncWrite, and thus could not be reunited.
Trait Implementations
impl<T> Debug for ReuniteError<T>[src]
impl<T> Debug for ReuniteError<T>[src]impl<T> Display for ReuniteError<T>[src]
impl<T> Display for ReuniteError<T>[src]impl<T> Error for ReuniteError<T> where
T: Any, [src]
impl<T> Error for ReuniteError<T> where
T: Any, [src]fn source(&self) -> Option<&(dyn Error + 'static)>1.30.0[src]
fn source(&self) -> Option<&(dyn Error + 'static)>1.30.0[src]The lower-level source of this error, if any. Read more
fn backtrace(&self) -> Option<&Backtrace>[src]
fn backtrace(&self) -> Option<&Backtrace>[src]backtrace)Returns a stack backtrace, if available, of where this error occurred. Read more
fn description(&self) -> &str1.0.0[src]
fn description(&self) -> &str1.0.0[src]use the Display impl or to_string()
Auto Trait Implementations
impl<T> !RefUnwindSafe for ReuniteError<T>
impl<T> Send for ReuniteError<T> where
T: Send,
T: Send,
impl<T> Sync for ReuniteError<T> where
T: Send,
T: Send,
impl<T> Unpin for ReuniteError<T>
impl<T> !UnwindSafe for ReuniteError<T>
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]pub fn borrow_mut(&mut self) -> &mut T[src]
pub fn borrow_mut(&mut self) -> &mut T[src]Mutably borrows from an owned value. Read more