1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
use std::error::Error;
use std::fmt::Debug;
use std::fmt::Display;
#[derive(Debug)]
pub enum StorageError {
InternalError {
source: Box<dyn Error + Send + Sync>,
},
NotFound,
}
impl Error for StorageError {
fn source(&self) -> Option<&(dyn Error + 'static)> {
match *self {
StorageError::InternalError { ref source } => Some(source.as_ref()),
StorageError::NotFound => None,
}
}
}
impl Display for StorageError {
fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
match *self {
StorageError::InternalError { .. } => {
write!(f, "Internal error occurred")
}
StorageError::NotFound { .. } => {
write!(f, "Key not found")
}
}
}
}