Enum requestty_ui::events::KeyCode [−][src]
pub enum KeyCode {
}Expand description
Represents a key.
Variants
Backspace key.
Enter key.
Left arrow key.
Right arrow key.
Up arrow key.
Down arrow key.
Home key.
End key.
Page up key.
Page dow key.
Tab key.
Shift + Tab key.
Delete key.
Insert key.
F(u8)A function key.
KeyEvent::F(1) represents F1 key, etc.
Tuple Fields of F
0: u8Char(char)A character.
KeyEvent::Char('c') represents c character, etc.
Tuple Fields of Char
0: charNull.
Escape key.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for KeyCode
impl UnwindSafe for KeyCode
Blanket Implementations
Mutably borrows from an owned value. Read more