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