pub enum SendErrorReason {
Closed,
Full,
}
Expand description
The reason a SendError
was returned.
Variants§
Trait Implementations§
Source§impl Clone for SendErrorReason
impl Clone for SendErrorReason
Source§fn clone(&self) -> SendErrorReason
fn clone(&self) -> SendErrorReason
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for SendErrorReason
impl Debug for SendErrorReason
Source§impl Display for SendErrorReason
impl Display for SendErrorReason
Source§impl Error for SendErrorReason
impl Error for SendErrorReason
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
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl PartialEq for SendErrorReason
impl PartialEq for SendErrorReason
impl Copy for SendErrorReason
impl Eq for SendErrorReason
impl StructuralPartialEq for SendErrorReason
Auto Trait Implementations§
impl Freeze for SendErrorReason
impl RefUnwindSafe for SendErrorReason
impl Send for SendErrorReason
impl Sync for SendErrorReason
impl Unpin for SendErrorReason
impl UnwindSafe for SendErrorReason
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