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
use crate::UnsafeMmapFlags;
use thiserror::Error;
#[derive(Debug, Error)]
pub enum Error {
#[error("{0:?} must be set")]
UnsafeFlagNeeded(UnsafeMmapFlags),
#[error(transparent)]
Io(#[from] std::io::Error),
#[error(transparent)]
ParseInt(#[from] std::num::ParseIntError),
#[error(transparent)]
Utf8(std::str::Utf8Error),
#[cfg(unix)]
#[error(transparent)]
Nix(#[from] nix::Error),
#[cfg(unix)]
#[error(transparent)]
Sysctl(#[from] sysctl::SysctlError),
#[cfg(any(target_os = "macos", target_os = "ios"))]
#[error("Mach kernel result = {0}")]
Mach(libc::c_int),
#[cfg(target_os = "windows")]
#[error(transparent)]
Windows(#[from] windows::core::Error),
}