pub enum Action {
Show 36 variants
Copy,
Cut,
Paste,
SelectAll,
Undo,
Redo,
Find,
Save,
Confirm,
Cancel,
Left,
Right,
Up,
Down,
WordLeft,
WordRight,
LineStart,
LineEnd,
DocStart,
DocEnd,
PageUp,
PageDown,
ExtendLeft,
ExtendRight,
ExtendUp,
ExtendDown,
ZoomIn,
ZoomOut,
FitToView,
FocusNext,
FocusPrev,
FocusLeft,
FocusRight,
FocusUp,
FocusDown,
FocusHints,
}Expand description
The single semantic action vocabulary shared by every facett component
(COH-2). A given action is the same chord in every component because the
chord lives only here, in the KeyMap.
Variants§
Copy
Cut
Paste
SelectAll
Undo
Redo
Find
Save
Confirm
Cancel
Left
Right
Up
Down
WordLeft
WordRight
LineStart
LineEnd
DocStart
DocEnd
PageUp
PageDown
ExtendLeft
ExtendRight
ExtendUp
ExtendDown
ZoomIn
ZoomOut
FitToView
FocusNext
FocusPrev
FocusLeft
FocusRight
FocusUp
FocusDown
FocusHints
Toggle the focus-hint overlay (FOC-3) / which-key trigger.
Implementations§
Trait Implementations§
impl Copy for Action
Source§impl<'de> Deserialize<'de> for Action
impl<'de> Deserialize<'de> for Action
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for Action
Source§impl Ord for Action
impl Ord for Action
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialOrd for Action
impl PartialOrd for Action
impl StructuralPartialEq for Action
Auto Trait Implementations§
impl Freeze for Action
impl RefUnwindSafe for Action
impl Send for Action
impl Sync for Action
impl Unpin for Action
impl UnsafeUnpin for Action
impl UnwindSafe for Action
Blanket Implementations§
impl<T> Allocation for T
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