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