pub enum Key {
Char(char),
Backspace,
Delete,
Enter,
Up,
Down,
Left,
Right,
Home,
End,
}Expand description
Possible key inputs.
Variants
Char(char)
Backspace
Delete
Enter
Up
Down
Left
Right
Home
End
Auto Trait Implementations
impl RefUnwindSafe for Key
impl Send for Key
impl Sync for Key
impl Unpin for Key
impl UnwindSafe for Key
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more