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