use std::{fmt, io};
#[derive(Debug, Clone)]
pub struct Error(String);
impl std::error::Error for Error {}
impl fmt::Display for Error {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "{}", self.0)
}
}
impl From<rmp_serde::decode::Error> for Error {
fn from(value: rmp_serde::decode::Error) -> Self {
Self(value.to_string())
}
}
impl From<io::Error> for Error {
fn from(value: io::Error) -> Self {
Self(value.to_string())
}
}