pub struct DeleteOperator;Expand description
Trait Implementations§
Source§impl Clone for DeleteOperator
impl Clone for DeleteOperator
Source§fn clone(&self) -> DeleteOperator
fn clone(&self) -> DeleteOperator
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 DeleteOperator
impl Debug for DeleteOperator
Source§impl Operator for DeleteOperator
impl Operator for DeleteOperator
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 DeleteOperator
Auto Trait Implementations§
impl Freeze for DeleteOperator
impl RefUnwindSafe for DeleteOperator
impl Send for DeleteOperator
impl Sync for DeleteOperator
impl Unpin for DeleteOperator
impl UnsafeUnpin for DeleteOperator
impl UnwindSafe for DeleteOperator
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