diff options
author | fxqnlr <[email protected]> | 2024-09-08 17:21:27 +0200 |
---|---|---|
committer | fxqnlr <[email protected]> | 2024-09-08 17:21:27 +0200 |
commit | a8d1be9536bce6d6be2cf1586c8bac049e820d31 (patch) | |
tree | 05c5c78c11f4506ba2eaa8a0751d3d896cfb81e9 /src/error.rs | |
parent | 695556c3441f5ffd40c35387a5b45e4459684c2c (diff) | |
download | arbs-a8d1be9536bce6d6be2cf1586c8bac049e820d31.tar arbs-a8d1be9536bce6d6be2cf1586c8bac049e820d31.tar.gz arbs-a8d1be9536bce6d6be2cf1586c8bac049e820d31.zip |
save files, real last modified check (doesn't work correctly)
Diffstat (limited to 'src/error.rs')
-rw-r--r-- | src/error.rs | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/error.rs b/src/error.rs index 6afa3d0..c43c1fc 100644 --- a/src/error.rs +++ b/src/error.rs | |||
@@ -17,12 +17,13 @@ pub enum Error { | |||
17 | #[error("Only exactly one user allowed in config")] | 17 | #[error("Only exactly one user allowed in config")] |
18 | MultiUser, | 18 | MultiUser, |
19 | 19 | ||
20 | #[error("OsString couldn't be converted to string")] | ||
21 | InvalidOsString, | ||
22 | |||
23 | #[error("Requested backup not found")] | 20 | #[error("Requested backup not found")] |
24 | BackupNotFound, | 21 | BackupNotFound, |
25 | 22 | ||
23 | // Packages | ||
24 | #[error("Unknown Package Manger Output")] | ||
25 | UnknownOutput, | ||
26 | |||
26 | #[error("json: {source}")] | 27 | #[error("json: {source}")] |
27 | SerdeJson { | 28 | SerdeJson { |
28 | #[from] | 29 | #[from] |