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
69
70
71
72
73
74
75
76
77
use std::error::Error as StdError;
use std::fmt;
use std::str::Utf8Error;
use quick_xml::Error as XmlError;
#[derive(Debug)]
#[non_exhaustive]
pub enum Error {
Xml(XmlError),
Utf8(Utf8Error),
InvalidStartTag,
Eof,
WrongDatetime(String),
WrongAttribute {
attribute: &'static str,
value: String,
},
}
impl StdError for Error {
fn source(&self) -> Option<&(dyn StdError + 'static)> {
match *self {
Error::Xml(ref err) => Some(err),
Error::Utf8(ref err) => Some(err),
Error::InvalidStartTag => None,
Error::Eof => None,
Error::WrongDatetime(_) => None,
Error::WrongAttribute { .. } => None,
}
}
}
impl fmt::Display for Error {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
match *self {
Error::Xml(ref err) => fmt::Display::fmt(err, f),
Error::Utf8(ref err) => fmt::Display::fmt(err, f),
Error::InvalidStartTag => write!(f, "input did not begin with an opening feed tag"),
Error::Eof => write!(f, "unexpected end of input"),
Error::WrongDatetime(ref datetime) => write!(
f,
"timestamps must be formatted by RFC3339, rather than {}",
datetime
),
Error::WrongAttribute {
attribute,
ref value,
} => write!(
f,
"Unsupported value of attribute {}: '{}'.",
attribute, value
),
}
}
}
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)
}
}