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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
#[derive(Debug, thiserror::Error)]
#[non_exhaustive]
#[allow(clippy::empty_enum)]
pub enum DeSerError {
#[cfg(feature = "yaml_enc")]
#[error("An error with yaml occured")]
Yaml(#[from] serde_yaml::Error),
#[cfg(feature = "ron_enc")]
#[error("An error with Ron occured")]
Ron(#[from] ron::Error),
#[cfg(feature = "bin_enc")]
#[error("An error with Bincode occured")]
Bincode(#[from] std::boxed::Box<bincode::ErrorKind>),
#[error("An internal error to rustbreak occured, please report it to the maintainers")]
Internal(String),
#[cfg(feature = "other_errors")]
#[error(transparent)]
Other(#[from] anyhow::Error),
}
#[derive(Debug, thiserror::Error)]
#[non_exhaustive]
pub enum BackendError {
#[error("An error while persisting the file occured")]
TempFile(#[from] tempfile::PersistError),
#[error("An I/O Error occured")]
Io(#[from] std::io::Error),
#[error("An internal error to rustbreak occured, please report it to the maintainers")]
Internal(String),
#[cfg(feature = "other_errors")]
#[error(transparent)]
Other(#[from] anyhow::Error),
}
#[derive(Debug, thiserror::Error)]
#[non_exhaustive]
pub enum RustbreakError {
#[error("Could not deserialize the value")]
DeSerialization(#[from] DeSerError),
#[error("The database has been poisoned")]
Poison,
#[error("The backend has encountered an error")]
Backend(#[from] BackendError),
#[error("The write operation paniced but got caught")]
WritePanic,
}
pub type Result<T> = std::result::Result<T, RustbreakError>;
pub type BackendResult<T> = std::result::Result<T, BackendError>;
pub type DeSerResult<T> = std::result::Result<T, DeSerError>;