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
use std::fmt;
#[derive(Debug)]
pub enum Error {
NameCStringConversion(std::ffi::NulError),
Create(std::io::Error),
AddSeals(std::io::Error),
GetSeals(std::io::Error),
}
impl std::error::Error for Error {
fn source(&self) -> Option<&(dyn std::error::Error + 'static)> {
use Error::*;
match self {
NameCStringConversion(ref e) => Some(e),
Create(ref e) => Some(e),
AddSeals(ref e) => Some(e),
GetSeals(ref e) => Some(e),
}
}
}
impl fmt::Display for Error {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
use Error::*;
f.write_str(match self {
NameCStringConversion(_) => "cannot convert `name` to a C string",
Create(_) => "cannot create a memfd",
AddSeals(_) => "cannot add seals to the memfd",
GetSeals(_) => "cannot read seals for a memfd",
})
}
}
#[cfg(test)]
#[test]
fn error_send_sync() {
fn assert_error<E: std::error::Error + Send + Sync + fmt::Display + fmt::Debug + 'static>() {}
assert_error::<Error>();
}