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
use std::error;
use std::fmt;
use std::io;
use reqwest;


/// Error type for `imdb`.
///
/// Errors occur mainly during io or http requests.
#[derive(Debug)]
pub enum Error {
    /// Error from IO operation
    IOError(io::Error),
    /// Error from reqwest library
    ReqwestError(reqwest::Error),
}

impl fmt::Display for Error {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        match *self {
            Error::IOError(ref err) => write!(f, "IO error: {}", err),
            Error::ReqwestError(ref err) => write!(f, "Reqwest error: {}", err),
        }
    }
}

impl error::Error for Error {
    fn description(&self) -> &str {
        match *self {
            Error::IOError(ref err) => err.description(),
            Error::ReqwestError(ref err) => err.description(),
        }
    }

    fn cause(&self) -> Option<&error::Error> {
        match *self {
            Error::IOError(ref err) => Some(err),
            Error::ReqwestError(ref err) => Some(err),
        }
    }
}