Enum imap_types::mailbox::MailboxOtherError
source · pub enum MailboxOtherError {
Literal(LiteralError),
Reserved,
}
Variants§
Literal(LiteralError)
Reserved
Trait Implementations§
source§impl Clone for MailboxOtherError
impl Clone for MailboxOtherError
source§fn clone(&self) -> MailboxOtherError
fn clone(&self) -> MailboxOtherError
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 MailboxOtherError
impl Debug for MailboxOtherError
source§impl Display for MailboxOtherError
impl Display for MailboxOtherError
source§impl Error for MailboxOtherError
impl Error for MailboxOtherError
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 From<LiteralError> for MailboxOtherError
impl From<LiteralError> for MailboxOtherError
source§fn from(source: LiteralError) -> Self
fn from(source: LiteralError) -> Self
Converts to this type from the input type.
source§impl Hash for MailboxOtherError
impl Hash for MailboxOtherError
source§impl Ord for MailboxOtherError
impl Ord for MailboxOtherError
source§fn cmp(&self, other: &MailboxOtherError) -> Ordering
fn cmp(&self, other: &MailboxOtherError) -> 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<MailboxOtherError> for MailboxOtherError
impl PartialEq<MailboxOtherError> for MailboxOtherError
source§fn eq(&self, other: &MailboxOtherError) -> bool
fn eq(&self, other: &MailboxOtherError) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd<MailboxOtherError> for MailboxOtherError
impl PartialOrd<MailboxOtherError> for MailboxOtherError
source§fn partial_cmp(&self, other: &MailboxOtherError) -> Option<Ordering>
fn partial_cmp(&self, other: &MailboxOtherError) -> Option<Ordering>
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 moreimpl Eq for MailboxOtherError
impl StructuralEq for MailboxOtherError
impl StructuralPartialEq for MailboxOtherError
Auto Trait Implementations§
impl RefUnwindSafe for MailboxOtherError
impl Send for MailboxOtherError
impl Sync for MailboxOtherError
impl Unpin for MailboxOtherError
impl UnwindSafe for MailboxOtherError
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