pub enum RecvErrorKind {
Closed,
}
Variants§
Closed
Trait Implementations§
Source§impl Clone for RecvErrorKind
impl Clone for RecvErrorKind
Source§fn clone(&self) -> RecvErrorKind
fn clone(&self) -> RecvErrorKind
Returns a copy 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 RecvErrorKind
impl Debug for RecvErrorKind
Source§impl<'de> Deserialize<'de> for RecvErrorKind
impl<'de> Deserialize<'de> for RecvErrorKind
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for RecvErrorKind
impl Display for RecvErrorKind
Source§impl Error for RecvErrorKind
impl Error for RecvErrorKind
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 HasErrorKind<RecvErrorKind> for RecvErrorKind
impl HasErrorKind<RecvErrorKind> for RecvErrorKind
Source§impl Hash for RecvErrorKind
impl Hash for RecvErrorKind
Source§impl Ord for RecvErrorKind
impl Ord for RecvErrorKind
Source§fn cmp(&self, other: &RecvErrorKind) -> Ordering
fn cmp(&self, other: &RecvErrorKind) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for RecvErrorKind
impl PartialEq for RecvErrorKind
Source§impl PartialOrd for RecvErrorKind
impl PartialOrd for RecvErrorKind
Source§impl Serialize for RecvErrorKind
impl Serialize for RecvErrorKind
impl Copy for RecvErrorKind
impl Eq for RecvErrorKind
impl StructuralPartialEq for RecvErrorKind
Auto Trait Implementations§
impl Freeze for RecvErrorKind
impl RefUnwindSafe for RecvErrorKind
impl Send for RecvErrorKind
impl Sync for RecvErrorKind
impl Unpin for RecvErrorKind
impl UnwindSafe for RecvErrorKind
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