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