pub struct YankOperator;Expand description
Trait Implementations§
Source§impl Clone for YankOperator
impl Clone for YankOperator
Source§fn clone(&self) -> YankOperator
fn clone(&self) -> YankOperator
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 Debug for YankOperator
impl Debug for YankOperator
Source§impl Operator for YankOperator
impl Operator for YankOperator
Source§fn execute(
&self,
ctx: &mut OperatorContext<'_>,
range: Range,
) -> Result<(), OperatorError>
fn execute( &self, ctx: &mut OperatorContext<'_>, range: Range, ) -> Result<(), OperatorError>
Execute the operator on a range. Read more
Source§fn is_linewise(&self) -> bool
fn is_linewise(&self) -> bool
Whether this operator works on whole lines (dd, yy). Read more
Source§fn is_text_modifying(&self) -> bool
fn is_text_modifying(&self) -> bool
Whether this operator modifies text. Read more
impl Copy for YankOperator
Auto Trait Implementations§
impl Freeze for YankOperator
impl RefUnwindSafe for YankOperator
impl Send for YankOperator
impl Sync for YankOperator
impl Unpin for YankOperator
impl UnsafeUnpin for YankOperator
impl UnwindSafe for YankOperator
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