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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
use de::DeserializeError;
use ser::SerializeError;
use std::error::Error as StdError;
use std::fmt;
use std::io;
use std::string;

/// An error produced while parsing fixed width data.
#[derive(Debug)]
pub enum Error {
    /// An IO error occured while reading the data.
    IOError(io::Error),
    /// A record could not be converted into valid UTF-8.
    FormatError(string::FromUtf8Error),
    /// An error occurred during deserialization.
    DeserializeError(DeserializeError),
    /// An error occurred during serialization.
    SerializeError(SerializeError),
}

impl fmt::Display for Error {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        match self {
            Error::IOError(ref e) => write!(f, "{}", e),
            Error::FormatError(ref e) => write!(f, "{}", e),
            Error::DeserializeError(ref e) => write!(f, "{}", e),
            Error::SerializeError(ref e) => write!(f, "{}", e),
        }
    }
}

impl From<io::Error> for Error {
    fn from(e: io::Error) -> Self {
        Error::IOError(e)
    }
}

impl From<DeserializeError> for Error {
    fn from(e: DeserializeError) -> Self {
        Error::DeserializeError(e)
    }
}

impl From<SerializeError> for Error {
    fn from(e: SerializeError) -> Self {
        Error::SerializeError(e)
    }
}

impl StdError for Error {
    fn description(&self) -> &str {
        match self {
            Error::IOError(e) => e.description(),
            Error::FormatError(e) => e.description(),
            Error::DeserializeError(e) => e.description(),
            Error::SerializeError(e) => e.description(),
        }
    }

    fn cause(&self) -> Option<&StdError> {
        match self {
            Error::IOError(ref e) => Some(e),
            Error::FormatError(ref e) => Some(e),
            Error::DeserializeError(ref e) => Some(e),
            Error::SerializeError(ref e) => Some(e),
        }
    }
}