atom_syndication/
error.rsuse std::error::Error as StdError;
use std::fmt;
#[derive(Debug)]
#[non_exhaustive]
pub enum Error {
Xml(XmlError),
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::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::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)
}
}
#[derive(Debug)]
pub struct XmlError(Box<dyn StdError + Send + Sync>);
impl XmlError {
pub(crate) fn new(err: impl StdError + Send + Sync + 'static) -> Self {
Self(Box::new(err))
}
}
impl StdError for XmlError {
fn source(&self) -> Option<&(dyn StdError + 'static)> {
self.0.source()
}
}
impl fmt::Display for XmlError {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
fmt::Display::fmt(&self.0, f)
}
}
#[cfg(test)]
mod test {
use super::*;
#[test]
fn error_send_and_sync() {
fn assert_send_sync<T: Send + Sync>() {}
assert_send_sync::<Error>();
assert_send_sync::<XmlError>();
}
}