Enum imap_codec::core::TextError
source · pub enum TextError {
Empty,
ByteNotAllowed {
found: u8,
position: usize,
},
}
Expand description
Error during creation of a human-readable text.
Variants§
Trait Implementations§
source§impl Error for TextError
impl Error for TextError
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 Ord for TextError
impl Ord for TextError
source§impl PartialEq<TextError> for TextError
impl PartialEq<TextError> for TextError
source§impl PartialOrd<TextError> for TextError
impl PartialOrd<TextError> for TextError
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 TextError
impl StructuralEq for TextError
impl StructuralPartialEq for TextError
Auto Trait Implementations§
impl RefUnwindSafe for TextError
impl Send for TextError
impl Sync for TextError
impl Unpin for TextError
impl UnwindSafe for TextError
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