Enum imap_codec::core::QuotedCharError
source · pub enum QuotedCharError {
Invalid(char),
}
Expand description
Error during creation of a quoted char.
Variants§
Trait Implementations§
source§impl Clone for QuotedCharError
impl Clone for QuotedCharError
source§fn clone(&self) -> QuotedCharError
fn clone(&self) -> QuotedCharError
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 QuotedCharError
impl Debug for QuotedCharError
source§impl Display for QuotedCharError
impl Display for QuotedCharError
source§impl Error for QuotedCharError
impl Error for QuotedCharError
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 Hash for QuotedCharError
impl Hash for QuotedCharError
source§impl Ord for QuotedCharError
impl Ord for QuotedCharError
source§fn cmp(&self, other: &QuotedCharError) -> Ordering
fn cmp(&self, other: &QuotedCharError) -> 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<QuotedCharError> for QuotedCharError
impl PartialEq<QuotedCharError> for QuotedCharError
source§fn eq(&self, other: &QuotedCharError) -> bool
fn eq(&self, other: &QuotedCharError) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd<QuotedCharError> for QuotedCharError
impl PartialOrd<QuotedCharError> for QuotedCharError
source§fn partial_cmp(&self, other: &QuotedCharError) -> Option<Ordering>
fn partial_cmp(&self, other: &QuotedCharError) -> 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 QuotedCharError
impl StructuralEq for QuotedCharError
impl StructuralPartialEq for QuotedCharError
Auto Trait Implementations§
impl RefUnwindSafe for QuotedCharError
impl Send for QuotedCharError
impl Sync for QuotedCharError
impl Unpin for QuotedCharError
impl UnwindSafe for QuotedCharError
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