pub enum Command {
Show 44 variants
Insert(char),
Delete,
Backspace,
DeleteLine,
MoveUp,
MoveDown,
MoveLeft,
MoveRight,
MoveHome,
MoveEnd,
PageUp,
PageDown,
MoveToFileStart,
MoveToFileEnd,
Copy,
Cut,
Paste,
CopyInternal,
CutInternal,
PasteInternal,
PasteText(String),
Resize,
Save,
Quit,
Undo,
Redo,
Find,
FindNext,
FindPrev,
ToggleLineNumbers,
ToggleComment,
Indent,
Unindent,
SelectAll,
ExtendSelection(Direction),
ClearSelection,
GoToLine,
ClearMessage,
ToggleSelectionMode,
ChangeEncoding,
JumpTenthUp,
JumpTenthDown,
ShowHelp,
ToggleDisplayMode,
}Variants§
Insert(char)
Delete
Backspace
DeleteLine
MoveUp
MoveDown
MoveLeft
MoveRight
MoveHome
MoveEnd
PageUp
PageDown
MoveToFileStart
MoveToFileEnd
Copy
Cut
Paste
CopyInternal
CutInternal
PasteInternal
PasteText(String)
Resize
Save
Quit
Undo
Redo
Find
FindNext
FindPrev
ToggleLineNumbers
ToggleComment
Indent
Unindent
SelectAll
ExtendSelection(Direction)
ClearSelection
GoToLine
ClearMessage
ToggleSelectionMode
ChangeEncoding
JumpTenthUp
JumpTenthDown
ShowHelp
ToggleDisplayMode
Trait Implementations§
impl Eq for Command
impl StructuralPartialEq for Command
Auto Trait Implementations§
impl Freeze for Command
impl RefUnwindSafe for Command
impl Send for Command
impl Sync for Command
impl Unpin for Command
impl UnwindSafe for Command
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