1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
//! Error and result type for emails

use lettre;
use std::io;
use std::{
    error::Error as StdError,
    fmt::{self, Display, Formatter},
};
use self::Error::*;

/// An enum of all error kinds.
#[derive(Debug)]
pub enum Error {
    /// Envelope error
    Envelope(lettre::error::Error),
    /// Unparseable filename for attachment
    CannotParseFilename,
    /// IO error
    Io(io::Error),
}

impl Display for Error {
    fn fmt(&self, fmt: &mut Formatter<'_>) -> Result<(), fmt::Error> {
        fmt.write_str(&match *self {
            CannotParseFilename => "Could not parse attachment filename".to_owned(),
            Io(ref err) => err.to_string(),
            Envelope(ref err) => err.to_string(),
        })
    }
}

impl StdError for Error {
    fn cause(&self) -> Option<&dyn StdError> {
        match *self {
            Envelope(ref err) => Some(err),
            Io(ref err) => Some(err),
            _ => None,
        }
    }
}

impl From<io::Error> for Error {
    fn from(err: io::Error) -> Error {
        Error::Io(err)

    }
}

impl From<lettre::error::Error> for Error {
    fn from(err: lettre::error::Error) -> Error {
        Error::Envelope(err)
    }
}