/src/console/key.rs
pub enum Command {
Up,
Down,
Left,
Right,
Enter,
Backspace,
Tab,
Break,
}
pub enum Key {
Char(char),
Command(Command),
}
pub struct ModifierState {
control: bool,
alt: bool,
shift: bool,
}