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

/// Direction key
#[derive(Debug, Copy, Clone, PartialEq)]
pub enum DirectionKey {
    Up,
    Down,
    Left,
    Right
}

/// Decoded key press
#[derive(Debug, Copy, Clone, PartialEq)]
pub enum Key {	
    Arrow(DirectionKey),
    Backspace,
    Tab,
    Newline,
    CarriageReturn,
    Break,
    Eot,
    Character(u8)
}

/// Key decoder error
#[derive(Debug, Copy, Clone, PartialEq)]
pub enum KeyDecoderError {
    UnknownSequence,
    MoreInputRequired
}

/// Key decoder trait
pub trait KeyDecoder {
    fn decode(&mut self, byte: u8) -> Result<Key, KeyDecoderError>;
}