pub struct KeyMap {
pub quit: Binding,
pub input: InputKeyMap,
pub select: SelectKeyMap,
pub multi_select: MultiSelectKeyMap,
pub confirm: ConfirmKeyMap,
pub note: NoteKeyMap,
pub text: TextKeyMap,
pub file_picker: FilePickerKeyMap,
}Expand description
Keybindings for form navigation.
Fields§
§quit: BindingQuit the form.
input: InputKeyMapInput field keybindings.
select: SelectKeyMapSelect field keybindings.
multi_select: MultiSelectKeyMapMulti-select field keybindings.
confirm: ConfirmKeyMapConfirm field keybindings.
note: NoteKeyMapNote field keybindings.
text: TextKeyMapText area keybindings.
file_picker: FilePickerKeyMapFile picker keybindings.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for KeyMap
impl RefUnwindSafe for KeyMap
impl Send for KeyMap
impl Sync for KeyMap
impl Unpin for KeyMap
impl UnwindSafe for KeyMap
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more