use std::fmt;
#[derive(Clone, Copy, Debug)]
pub enum ErrorKind {
Serialization,
NotFound,
Other,
#[doc(hidden)]
__Nonexhaustive
}
#[derive(Debug)]
pub struct Error {
kind: ErrorKind,
message: String
}
impl Error {
pub(crate) fn new<E: fmt::Display>(kind: ErrorKind, err: E) -> Error {
Error { kind, message: err.to_string() }
}
pub fn kind(&self) -> ErrorKind {
self.kind
}
}
impl fmt::Display for Error {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
match self.kind {
ErrorKind::Serialization =>
write!(f, "An error occurred during serialization or deserialization: {}", self.message),
ErrorKind::NotFound =>
write!(f, "An item was not found: {}", self.message),
ErrorKind::Other =>
write!(f, "An unknown error occurred: {}", self.message),
ErrorKind::__Nonexhaustive => unreachable!()
}
}
}
impl ::std::error::Error for Error {
fn description(&self) -> &str {
&self.message
}
}