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
#[derive(Debug)]
pub enum ControllerError {
    Timeout,
    TestFailed { response: u8 },
}

#[derive(Debug)]
pub enum KeyboardError {
    BufferOverrun,
    SelfTestFailed,
    Resend,
    KeyDetectionError,
    InvalidResponse(u8),
    ControllerError(ControllerError),
}

#[derive(Debug)]
pub enum MouseError {
    SelfTestFailed,
    Resend,
    InvalidResponse(u8),
    InvalidResolution(u8),
    InvalidSampleRate(u8),
    ControllerError(ControllerError),
}

impl From<ControllerError> for KeyboardError {
    fn from(err: ControllerError) -> Self {
        KeyboardError::ControllerError(err)
    }
}

impl From<ControllerError> for MouseError {
    fn from(err: ControllerError) -> Self {
        MouseError::ControllerError(err)
    }
}