pub struct UnboundedSendError(_);
Expand description
Error returned by the UnboundedSender
.
Trait Implementations
sourceimpl Debug for UnboundedSendError
impl Debug for UnboundedSendError
sourceimpl Display for UnboundedSendError
impl Display for UnboundedSendError
sourceimpl Error for UnboundedSendError
impl Error for UnboundedSendError
sourcepub fn description(&self) -> &str
pub fn description(&self) -> &str
👎 Deprecated since 1.42.0:
use the Display impl or to_string()
1.30.0 · sourcefn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
Auto Trait Implementations
impl RefUnwindSafe for UnboundedSendError
impl Send for UnboundedSendError
impl Sync for UnboundedSendError
impl Unpin for UnboundedSendError
impl UnwindSafe for UnboundedSendError
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more