pub enum SendError<T> {
Io(Error),
Disconnected(T),
}
Expand description
An error returned from the Sender::send
or SyncSender::send
function.
Variants§
Trait Implementations§
Source§impl<T: Any> Error for SendError<T>
impl<T: Any> Error for SendError<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 SendError<T>where
T: Freeze,
impl<T> !RefUnwindSafe for SendError<T>
impl<T> Send for SendError<T>where
T: Send,
impl<T> Sync for SendError<T>where
T: Sync,
impl<T> Unpin for SendError<T>where
T: Unpin,
impl<T> !UnwindSafe for SendError<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