Enum maildir::MailEntryError [] [src]

pub enum MailEntryError {
    IOError(Error),
    ParseError(MailParseError),
    DateError(&'static str),
}

Variants

Trait Implementations

impl Debug for MailEntryError
[src]

Formats the value using the given formatter.

impl Display for MailEntryError
[src]

Formats the value using the given formatter. Read more

impl Error for MailEntryError
[src]

A short description of the error. Read more

The lower-level cause of this error, if any. Read more

impl From<Error> for MailEntryError
[src]

Performs the conversion.

impl From<MailParseError> for MailEntryError
[src]

Performs the conversion.

impl From<&'static str> for MailEntryError
[src]

Performs the conversion.