use typed_store_error::TypedStoreError;
pub type Result<T, E = Error> = ::std::result::Result<T, E>;
#[derive(Debug)]
pub struct Error {
inner: Box<Inner>,
}
type BoxError = Box<dyn std::error::Error + Send + Sync + 'static>;
#[derive(Debug)]
struct Inner {
kind: Kind,
source: Option<BoxError>,
}
#[derive(Copy, Clone, Debug, PartialEq, Eq)]
pub enum Kind {
Serialization,
Missing,
Custom,
}
impl Error {
fn new<E: Into<BoxError>>(kind: Kind, source: Option<E>) -> Self {
Self {
inner: Box::new(Inner {
kind,
source: source.map(Into::into),
}),
}
}
pub fn serialization<E: Into<BoxError>>(e: E) -> Self {
Self::new(Kind::Serialization, Some(e))
}
pub fn missing<E: Into<BoxError>>(e: E) -> Self {
Self::new(Kind::Missing, Some(e))
}
pub fn custom<E: Into<BoxError>>(e: E) -> Self {
Self::new(Kind::Custom, Some(e))
}
pub fn kind(&self) -> Kind {
self.inner.kind
}
}
impl std::error::Error for Error {
fn source(&self) -> Option<&(dyn std::error::Error + 'static)> {
self.inner.source.as_ref().map(|e| &**e as _)
}
}
impl std::fmt::Display for Error {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "{:?}", self)
}
}
impl From<TypedStoreError> for Error {
fn from(e: TypedStoreError) -> Self {
Self::custom(e)
}
}