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 std::fmt::{self, Debug, Display, Formatter};
use thiserror::Error;
#[derive(Debug, Clone, Copy, PartialEq, Eq, Error)]
#[error("{} {:?}: {}", operation, path, error)]
pub struct BuildError<Path: Debug, Error: Display> {
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<(), fmt::Error> {
write!(formatter, "{}", self.name())
}
}