pub enum MailboxOtherError {
Literal(ValidationError),
Reserved,
}
Variants§
Literal(ValidationError)
Reserved
Trait Implementations§
Source§impl Clone for MailboxOtherError
impl Clone for MailboxOtherError
Source§fn clone(&self) -> MailboxOtherError
fn clone(&self) -> MailboxOtherError
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 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)>
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 From<ValidationError> for MailboxOtherError
impl From<ValidationError> for MailboxOtherError
Source§fn from(source: ValidationError) -> Self
fn from(source: ValidationError) -> 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 for MailboxOtherError
impl PartialEq for MailboxOtherError
Source§impl PartialOrd for MailboxOtherError
impl PartialOrd for MailboxOtherError
impl Eq for MailboxOtherError
impl StructuralPartialEq for MailboxOtherError
Auto Trait Implementations§
impl Freeze for MailboxOtherError
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