pub struct KeyMap {
pub page_down: Binding,
pub page_up: Binding,
pub half_page_up: Binding,
pub half_page_down: Binding,
pub down: Binding,
pub up: Binding,
pub left: Binding,
pub right: Binding,
}Expand description
KeyMap defines the keybindings for the viewport.
Fields§
§page_down: BindingPage down binding.
page_up: BindingPage up binding.
half_page_up: BindingHalf page up binding.
half_page_down: BindingHalf page down binding.
down: BindingDown binding.
up: BindingUp binding.
left: BindingLeft binding.
right: BindingRight binding.
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 UnsafeUnpin 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