pub struct EnterInsertEndOfLine;Expand description
Enter insert mode at end of line (A).
Trait Implementations§
Source§impl Clone for EnterInsertEndOfLine
impl Clone for EnterInsertEndOfLine
Source§fn clone(&self) -> EnterInsertEndOfLine
fn clone(&self) -> EnterInsertEndOfLine
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 EnterInsertEndOfLine
impl Command for EnterInsertEndOfLine
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 EnterInsertEndOfLine
impl CommandHandler for EnterInsertEndOfLine
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 EnterInsertEndOfLine
impl Debug for EnterInsertEndOfLine
Source§impl Default for EnterInsertEndOfLine
impl Default for EnterInsertEndOfLine
Source§fn default() -> EnterInsertEndOfLine
fn default() -> EnterInsertEndOfLine
Returns the “default value” for a type. Read more
impl Copy for EnterInsertEndOfLine
Auto Trait Implementations§
impl Freeze for EnterInsertEndOfLine
impl RefUnwindSafe for EnterInsertEndOfLine
impl Send for EnterInsertEndOfLine
impl Sync for EnterInsertEndOfLine
impl Unpin for EnterInsertEndOfLine
impl UnsafeUnpin for EnterInsertEndOfLine
impl UnwindSafe for EnterInsertEndOfLine
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