#[derive(Debug)]
pub enum Error {
Xml(quick_xml::Error),
Io(std::io::Error),
}
impl std::fmt::Display for Error {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
match self {
Error::Xml(e) => write!(f, "XML error: {e}"),
Error::Io(e) => write!(f, "IO error: {e}"),
}
}
}
impl std::error::Error for Error {}
impl From<quick_xml::Error> for Error {
fn from(e: quick_xml::Error) -> Self {
Error::Xml(e)
}
}
impl From<std::io::Error> for Error {
fn from(e: std::io::Error) -> Self {
Error::Io(e)
}
}