Enum mailstrom::error::Error [] [src]

pub enum Error {
    Send(SendError<Message>),
    EmailParser(ParseError),
    Storage(String),
    DnsUnavailable,
    Resolver(ResolvError),
    Lock,
}

Variants

Trait Implementations

impl Debug for Error
[src]

Formats the value using the given formatter.

impl From<SendError<Message>> for Error
[src]

Performs the conversion.

impl From<ParseError> for Error
[src]

Performs the conversion.

impl<S: MailstromStorageError> From<S> for Error
[src]

Performs the conversion.

impl From<ResolvError> for Error
[src]

Performs the conversion.

impl Display for Error
[src]

Formats the value using the given formatter. Read more

impl Error for Error
[src]

A short description of the error. Read more

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