pub enum ReViCommand {
Show 26 variants
StartUp,
CursorUp,
CursorDown,
CursorLeft,
CursorRight,
ScrollUp,
ScrollDown,
Home,
End,
MoveForwardByWord,
MoveBackwardByWord,
JumpToFirstLineBuffer,
JumpToLastLineBuffer,
Backspace,
NewLine,
FirstCharInLine,
DeleteChar,
DeleteLine,
InsertChar(char),
ChangeMode(Mode),
EnterCommandMode,
ExitCommandMode,
ExcuteCommandLine,
NextWindow,
Save,
Quit,
}Variants§
StartUp
CursorUp
CursorDown
CursorLeft
CursorRight
ScrollUp
ScrollDown
Home
End
MoveForwardByWord
MoveBackwardByWord
JumpToFirstLineBuffer
JumpToLastLineBuffer
Backspace
NewLine
FirstCharInLine
DeleteChar
DeleteLine
InsertChar(char)
ChangeMode(Mode)
EnterCommandMode
ExitCommandMode
ExcuteCommandLine
NextWindow
Save
Quit
Trait Implementations§
Source§impl Clone for ReViCommand
impl Clone for ReViCommand
Source§fn clone(&self) -> ReViCommand
fn clone(&self) -> ReViCommand
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ReViCommand
impl Debug for ReViCommand
Source§impl Hash for ReViCommand
impl Hash for ReViCommand
Source§impl PartialEq for ReViCommand
impl PartialEq for ReViCommand
impl Copy for ReViCommand
impl Eq for ReViCommand
impl StructuralPartialEq for ReViCommand
Auto Trait Implementations§
impl Freeze for ReViCommand
impl RefUnwindSafe for ReViCommand
impl Send for ReViCommand
impl Sync for ReViCommand
impl Unpin for ReViCommand
impl UnwindSafe for ReViCommand
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