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
use derive_more::Display;
use std::fmt::{Debug, Display, Error, Formatter};
#[derive(Debug, Clone, Copy, PartialEq, Eq, Display)]
#[display(fmt = "{} {:?}: {}", operation, path, error)]
pub struct BuildError<Path, Error> {
pub operation: FailedOperation,
pub path: Path,
pub error: Error,
}
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum FailedOperation {
WriteFile,
CreateDir,
}
impl FailedOperation {
pub const fn name(self) -> &'static str {
use FailedOperation::*;
match self {
WriteFile => "write_file",
CreateDir => "create_dir",
}
}
}
impl Display for FailedOperation {
fn fmt(&self, formatter: &mut Formatter<'_>) -> Result<(), Error> {
write!(formatter, "{}", self.name())
}
}