Struct imap_types::error::ValidationError  
source · pub struct ValidationError { /* private fields */ }Expand description
A validation error.
This error can be returned during validation of a value, e.g., a tag, atom, etc.
Trait Implementations§
source§impl Clone for ValidationError
 
impl Clone for ValidationError
source§fn clone(&self) -> ValidationError
 
fn clone(&self) -> ValidationError
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 ValidationError
 
impl Debug for ValidationError
source§impl Display for ValidationError
 
impl Display for ValidationError
source§impl Error for ValidationError
 
impl Error for ValidationError
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 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 ValidationError
 
impl Hash for ValidationError
source§impl Ord for ValidationError
 
impl Ord for ValidationError
source§fn cmp(&self, other: &ValidationError) -> Ordering
 
fn cmp(&self, other: &ValidationError) -> 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<ValidationError> for ValidationError
 
impl PartialEq<ValidationError> for ValidationError
source§fn eq(&self, other: &ValidationError) -> bool
 
fn eq(&self, other: &ValidationError) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.source§impl PartialOrd<ValidationError> for ValidationError
 
impl PartialOrd<ValidationError> for ValidationError
source§fn partial_cmp(&self, other: &ValidationError) -> Option<Ordering>
 
fn partial_cmp(&self, other: &ValidationError) -> 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 ValidationError
impl StructuralEq for ValidationError
impl StructuralPartialEq for ValidationError
Auto Trait Implementations§
impl RefUnwindSafe for ValidationError
impl Send for ValidationError
impl Sync for ValidationError
impl Unpin for ValidationError
impl UnwindSafe for ValidationError
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