pub struct KeyMap {
pub goto_top: Binding,
pub goto_last: Binding,
pub down: Binding,
pub up: Binding,
pub page_up: Binding,
pub page_down: Binding,
pub back: Binding,
pub open: Binding,
pub select: Binding,
}Expand description
Key bindings for file picker navigation.
Fields§
§goto_top: BindingGo to first entry.
goto_last: BindingGo to last entry.
down: BindingMove down one entry.
up: BindingMove up one entry.
page_up: BindingPage up.
page_down: BindingPage down.
back: BindingGo back to parent directory.
open: BindingOpen directory or select file.
select: BindingConfirm selection.
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