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
use std::{error, fmt};
#[derive(Copy, Clone, Debug, Eq, PartialEq)]
pub enum Error {
WinError(u32),
BusNotFound,
BusAccessFailed(u32),
BusVersionMismatch,
NoFreeSlot,
AlreadyConnected,
NotPluggedIn,
TargetNotReady,
UserIndexOutOfRange,
}
impl From<u32> for Error {
#[inline]
fn from(error: u32) -> Error {
Error::WinError(error)
}
}
impl fmt::Display for Error {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
match *self {
Error::WinError(err) => write!(f, "win error: {}", err),
Error::BusNotFound => f.write_str("bus not found"),
Error::BusAccessFailed(err) => write!(f, "bus access failed: {}", err),
Error::BusVersionMismatch => f.write_str("bus version mismatch"),
Error::NoFreeSlot => f.write_str("no free slot"),
Error::AlreadyConnected => f.write_str("already connected"),
Error::NotPluggedIn => f.write_str("not plugged in"),
Error::TargetNotReady => f.write_str("target not ready"),
Error::UserIndexOutOfRange => f.write_str("user index out of range"),
}
}
}
impl error::Error for Error {}