use quick_xml::de::DeError;
use static_assertions::assert_impl_all;
use std::{convert::Infallible, error, fmt};
use zvariant::Error as VariantError;
#[derive(Clone, Debug)]
#[non_exhaustive]
pub enum Error {
Variant(VariantError),
QuickXml(DeError),
}
assert_impl_all!(Error: Send, Sync, Unpin);
impl PartialEq for Error {
fn eq(&self, other: &Self) -> bool {
match (self, other) {
(Self::Variant(s), Self::Variant(o)) => s == o,
(Self::QuickXml(_), Self::QuickXml(_)) => false,
(_, _) => false,
}
}
}
impl error::Error for Error {
fn source(&self) -> Option<&(dyn error::Error + 'static)> {
match self {
Error::Variant(e) => Some(e),
Error::QuickXml(e) => Some(e),
}
}
}
impl fmt::Display for Error {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
match self {
Error::Variant(e) => write!(f, "{e}"),
Error::QuickXml(e) => write!(f, "XML error: {e}"),
}
}
}
impl From<VariantError> for Error {
fn from(val: VariantError) -> Self {
Error::Variant(val)
}
}
impl From<DeError> for Error {
fn from(val: DeError) -> Self {
Error::QuickXml(val)
}
}
impl From<Infallible> for Error {
fn from(i: Infallible) -> Self {
match i {}
}
}
pub type Result<T> = std::result::Result<T, Error>;