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