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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
use std::io::Error as IoError;
use std::str::Utf8Error;
use std::{error, fmt};
use nix::errno::Errno;
#[derive(Debug)]
pub enum Error {
Io(IoError),
QueueEmpty,
String(Utf8Error),
Sys(Errno),
}
impl error::Error for Error {
fn description(&self) -> &str {
match self {
Self::Io(_) => "IO error",
Self::QueueEmpty => "Queue empty",
Self::String(_) => "String error",
Self::Sys(ref errno) => errno.desc(),
}
}
fn source(&self) -> Option<&(dyn error::Error + 'static)> {
match self {
Self::Io(ref error) => Some(error),
Self::String(ref error) => Some(error),
_ => None,
}
}
}
impl fmt::Display for Error {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
match self {
Self::Io(ref error) => write!(f, "{}", error),
Self::QueueEmpty => write!(f, "Queue empty"),
Self::String(ref error) => write!(f, "{}", error),
Self::Sys(ref errno) => write!(f, "{:?}: {}", errno, errno.desc()),
}
}
}
impl From<Errno> for Error {
fn from(errno: Errno) -> Self {
Error::Sys(errno)
}
}
impl From<IoError> for Error {
fn from(error: IoError) -> Self {
Self::Io(error)
}
}
impl From<Utf8Error> for Error {
fn from(error: Utf8Error) -> Self {
Error::String(error)
}
}