Enum imap_codec::command::CopyError  
source · pub enum CopyError<S, M> {
    Sequence(S),
    Mailbox(M),
}Variants§
Trait Implementations§
source§impl<S, M> Error for CopyError<S, M>where
    CopyError<S, M>: Debug + Display,
 
impl<S, M> Error for CopyError<S, M>where CopyError<S, M>: Debug + Display,
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
 
fn source(&self) -> Option<&(dyn Error + 'static)>
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<S, M> Ord for CopyError<S, M>where
    S: Ord,
    M: Ord,
 
impl<S, M> Ord for CopyError<S, M>where S: Ord, M: Ord,
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<S, M> PartialEq<CopyError<S, M>> for CopyError<S, M>where
    S: PartialEq<S>,
    M: PartialEq<M>,
 
impl<S, M> PartialEq<CopyError<S, M>> for CopyError<S, M>where S: PartialEq<S>, M: PartialEq<M>,
source§impl<S, M> PartialOrd<CopyError<S, M>> for CopyError<S, M>where
    S: PartialOrd<S>,
    M: PartialOrd<M>,
 
impl<S, M> PartialOrd<CopyError<S, M>> for CopyError<S, M>where S: PartialOrd<S>, M: PartialOrd<M>,
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
 
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for 
self and other) and is used by the <=
operator. Read more