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
|
use tracing::error;
pub type Result<T> = std::result::Result<T, Error>;
#[derive(Debug, thiserror::Error)]
pub enum Error {
#[error("unknown custom directory '{0}'")]
CustomDirectory(String),
#[error("invalid directory index '{0}'")]
InvalidIndex(String),
#[error("no directory index given")]
NoIndex,
#[error("invalid directory '{0}'")]
InvalidDirectory(String),
#[error("Requested backup not found")]
BackupNotFound,
// Utils
#[error("System directory not found")]
NoSysDir,
// Packages
#[error("Unknown Package Manger Output")]
UnknownOutput,
#[error("Unsupported os/distro")]
Unsupported,
// Deps
#[error(transparent)]
Config(#[from] config::ConfigError),
#[error(transparent)]
SerdeJson(#[from] serde_json::Error),
#[error(transparent)]
TomlSerialize(#[from] toml::ser::Error),
#[cfg(feature = "notifications")]
#[error(transparent)]
Notify(#[from] notify_rust::error::Error),
// Rust
#[error(transparent)]
Io(#[from] std::io::Error),
#[error(transparent)]
SystemTime(#[from] std::time::SystemTimeError),
}
|