pub struct KeyMap {Show 19 fields
pub quit: Vec<KeySpec>,
pub add_task: Vec<KeySpec>,
pub add_interrupt: Vec<KeySpec>,
pub start_or_resume: Vec<KeySpec>,
pub finish_active: Vec<KeySpec>,
pub popup: Vec<KeySpec>,
pub delete: Vec<KeySpec>,
pub reorder_up: Vec<KeySpec>,
pub reorder_down: Vec<KeySpec>,
pub estimate_plus: Vec<KeySpec>,
pub postpone: Vec<KeySpec>,
pub bring_to_today: Vec<KeySpec>,
pub view_next: Vec<KeySpec>,
pub view_prev: Vec<KeySpec>,
pub select_up: Vec<KeySpec>,
pub select_down: Vec<KeySpec>,
pub toggle_blocks: Vec<KeySpec>,
pub category_cycle: Vec<KeySpec>,
pub category_picker: Vec<KeySpec>,
}Fields§
§quit: Vec<KeySpec>§add_task: Vec<KeySpec>§add_interrupt: Vec<KeySpec>§start_or_resume: Vec<KeySpec>§finish_active: Vec<KeySpec>§popup: Vec<KeySpec>§delete: Vec<KeySpec>§reorder_up: Vec<KeySpec>§reorder_down: Vec<KeySpec>§estimate_plus: Vec<KeySpec>§postpone: Vec<KeySpec>§bring_to_today: Vec<KeySpec>§view_next: Vec<KeySpec>§view_prev: Vec<KeySpec>§select_up: Vec<KeySpec>§select_down: Vec<KeySpec>§toggle_blocks: Vec<KeySpec>§category_cycle: Vec<KeySpec>§category_picker: Vec<KeySpec>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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more