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
#[derive(Debug)]
pub enum Error {
DataLength(usize),
NotSupported,
Parameter,
Protocol(u8),
Signature((u8, u8)),
SuperIoId(u16),
Timeout,
Verify,
Version(u8),
WouldBlock,
#[cfg(feature = "std")]
Io(std::io::Error),
#[cfg(feature = "hidapi")]
Hid(hidapi::HidError),
}
#[cfg(feature = "std")]
impl From<std::io::Error> for Error {
fn from(error: std::io::Error) -> Self {
Self::Io(error)
}
}
#[cfg(feature = "hidapi")]
impl From<hidapi::HidError> for Error {
fn from(error: hidapi::HidError) -> Self {
Self::Hid(error)
}
}