use std::result::Result as StdResult;
#[derive(Debug, thiserror::Error)]
pub enum Error {
#[error("placeholder")]
Nothing,
}
impl serde::de::Error for Error {
fn custom<T>(_msg: T) -> Self
where
T: std::fmt::Display,
{
todo!()
}
}
impl serde::ser::Error for Error {
fn custom<T>(_msg: T) -> Self
where
T: std::fmt::Display,
{
todo!()
}
}
pub type Result<T> = StdResult<T, Error>;