use core::fmt;
pub type DecoderResult<T, E = DecoderError> = std::result::Result<T, E>;
#[derive(Debug)]
pub enum DecoderError {
Internal(String),
NotSupported(String),
InvalidShape(String),
Yaml(serde_yaml::Error),
Json(serde_json::Error),
NoConfig,
InvalidConfig(String),
NDArrayShape(ndarray::ShapeError),
}
impl fmt::Display for DecoderError {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "{self:?}")
}
}
impl std::error::Error for DecoderError {}
impl From<serde_yaml::Error> for DecoderError {
fn from(err: serde_yaml::Error) -> Self {
DecoderError::Yaml(err)
}
}
impl From<serde_json::Error> for DecoderError {
fn from(err: serde_json::Error) -> Self {
DecoderError::Json(err)
}
}
impl From<ndarray::ShapeError> for DecoderError {
fn from(err: ndarray::ShapeError) -> Self {
DecoderError::NDArrayShape(err)
}
}