pub struct UnboundedSendError(/* private fields */);
Expand description
Error returned by the UnboundedSender
.
Trait Implementations§
Source§impl Debug for UnboundedSendError
impl Debug for UnboundedSendError
Source§impl Display for UnboundedSendError
impl Display for UnboundedSendError
Source§impl Error for UnboundedSendError
impl Error for UnboundedSendError
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 Freeze for UnboundedSendError
impl RefUnwindSafe for UnboundedSendError
impl Send for UnboundedSendError
impl Sync for UnboundedSendError
impl Unpin for UnboundedSendError
impl UnwindSafe for UnboundedSendError
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