pub enum AskErrorKind {
    Fork(ForkErrorKind),
    Tell(SendErrorKind),
    Recv(RecvErrorKind),
}Variants§
Trait Implementations§
Source§impl Clone for AskErrorKind
 
impl Clone for AskErrorKind
Source§fn clone(&self) -> AskErrorKind
 
fn clone(&self) -> AskErrorKind
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 AskErrorKind
 
impl Debug for AskErrorKind
Source§impl Display for AskErrorKind
 
impl Display for AskErrorKind
Source§impl Error for AskErrorKind
 
impl Error for AskErrorKind
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<AskErrorKind> for AskErrorKind
 
impl HasErrorKind<AskErrorKind> for AskErrorKind
Source§impl Hash for AskErrorKind
 
impl Hash for AskErrorKind
Source§impl Ord for AskErrorKind
 
impl Ord for AskErrorKind
Source§fn cmp(&self, other: &AskErrorKind) -> Ordering
 
fn cmp(&self, other: &AskErrorKind) -> 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 AskErrorKind
 
impl PartialEq for AskErrorKind
Source§impl PartialOrd for AskErrorKind
 
impl PartialOrd for AskErrorKind
impl Copy for AskErrorKind
impl Eq for AskErrorKind
impl StructuralPartialEq for AskErrorKind
Auto Trait Implementations§
impl Freeze for AskErrorKind
impl RefUnwindSafe for AskErrorKind
impl Send for AskErrorKind
impl Sync for AskErrorKind
impl Unpin for AskErrorKind
impl UnwindSafe for AskErrorKind
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