pub struct ExitVisualMode;Expand description
Exit visual mode and return to normal mode.
Trait Implementations§
Source§impl Clone for ExitVisualMode
impl Clone for ExitVisualMode
Source§fn clone(&self) -> ExitVisualMode
fn clone(&self) -> ExitVisualMode
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 Command for ExitVisualMode
impl Command for ExitVisualMode
Source§fn description(&self) -> &'static str
fn description(&self) -> &'static str
Get a human-readable description of what this command does.
Source§fn complete(&self, _partial: &str) -> Vec<String>
fn complete(&self, _partial: &str) -> Vec<String>
Get tab-completion candidates for this command’s arguments. Read more
Source§fn priority(&self) -> CommandPriority
fn priority(&self) -> CommandPriority
Registration priority (#545). Read more
Source§impl CommandHandler for ExitVisualMode
impl CommandHandler for ExitVisualMode
Source§fn execute(
&self,
runtime: &mut SessionRuntime<'_>,
_args: &CommandContext,
) -> CommandResult
fn execute( &self, runtime: &mut SessionRuntime<'_>, _args: &CommandContext, ) -> CommandResult
Execute the command. Read more
Source§impl Debug for ExitVisualMode
impl Debug for ExitVisualMode
Source§impl Default for ExitVisualMode
impl Default for ExitVisualMode
Source§fn default() -> ExitVisualMode
fn default() -> ExitVisualMode
Returns the “default value” for a type. Read more
impl Copy for ExitVisualMode
Auto Trait Implementations§
impl Freeze for ExitVisualMode
impl RefUnwindSafe for ExitVisualMode
impl Send for ExitVisualMode
impl Sync for ExitVisualMode
impl Unpin for ExitVisualMode
impl UnsafeUnpin for ExitVisualMode
impl UnwindSafe for ExitVisualMode
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