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
use std::error::Error as StdError;
use std::fmt;
use std::str::Utf8Error;

use quick_xml::errors::Error as XmlError;

#[derive(Debug)]
/// An error that occurred while performing an Atom operation.
pub enum Error {
    /// Unable to parse XML.
    Xml(XmlError),
    /// Unable to parse UTF8 in to a string.
    Utf8(Utf8Error),
    /// Input did not begin with an opening feed tag.
    InvalidStartTag,
    /// Unexpected end of input.
    Eof,
}

impl StdError for Error {
    fn description(&self) -> &str {
        match *self {
            Error::Xml(ref err) => err.description(),
            Error::Utf8(ref err) => err.description(),
            Error::InvalidStartTag => "input did not begin with an opening feed tag",
            Error::Eof => "unexpected end of input",
        }
    }

    fn cause(&self) -> Option<&StdError> {
        match *self {
            Error::Xml(ref err) => Some(err),
            Error::Utf8(ref err) => Some(err),
            Error::InvalidStartTag | Error::Eof => None,
        }
    }
}

impl fmt::Display for Error {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        match *self {
            Error::Xml(ref err) => err.fmt(f),
            Error::Utf8(ref err) => err.fmt(f),
            Error::InvalidStartTag => write!(f, "input did not begin with an opening feed tag"),
            Error::Eof => write!(f, "unexpected end of input"),
        }
    }
}

impl From<XmlError> for Error {
    fn from(err: XmlError) -> Error {
        Error::Xml(err)
    }
}

impl From<Utf8Error> for Error {
    fn from(err: Utf8Error) -> Error {
        Error::Utf8(err)
    }
}