Enum imap_codec::tokio::client::ImapClientCodecError
source · pub enum ImapClientCodecError {
Io(IoError),
Framing(FramingError),
ParsingFailed,
}
Available on crate feature
tokio
only.Variants§
Trait Implementations§
source§impl Debug for ImapClientCodecError
impl Debug for ImapClientCodecError
source§impl Display for ImapClientCodecError
impl Display for ImapClientCodecError
source§impl Error for ImapClientCodecError
impl Error for ImapClientCodecError
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<Error> for ImapClientCodecError
impl From<Error> for ImapClientCodecError
source§impl From<FramingError> for ImapClientCodecError
impl From<FramingError> for ImapClientCodecError
source§fn from(source: FramingError) -> Self
fn from(source: FramingError) -> Self
Converts to this type from the input type.
source§impl PartialEq<ImapClientCodecError> for ImapClientCodecError
impl PartialEq<ImapClientCodecError> for ImapClientCodecError
Auto Trait Implementations§
impl !RefUnwindSafe for ImapClientCodecError
impl Send for ImapClientCodecError
impl Sync for ImapClientCodecError
impl Unpin for ImapClientCodecError
impl !UnwindSafe for ImapClientCodecError
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