pub struct TextObjectEditPlan {
pub delete_ranges: Vec<(Pos, Pos)>,
pub text: String,
pub mode: VisualModeKind,
}Fields§
§delete_ranges: Vec<(Pos, Pos)>§text: String§mode: VisualModeKindTrait Implementations§
Source§impl Clone for TextObjectEditPlan
impl Clone for TextObjectEditPlan
Source§fn clone(&self) -> TextObjectEditPlan
fn clone(&self) -> TextObjectEditPlan
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 TextObjectEditPlan
impl Debug for TextObjectEditPlan
Source§impl PartialEq for TextObjectEditPlan
impl PartialEq for TextObjectEditPlan
impl Eq for TextObjectEditPlan
impl StructuralPartialEq for TextObjectEditPlan
Auto Trait Implementations§
impl Freeze for TextObjectEditPlan
impl RefUnwindSafe for TextObjectEditPlan
impl Send for TextObjectEditPlan
impl Sync for TextObjectEditPlan
impl Unpin for TextObjectEditPlan
impl UnsafeUnpin for TextObjectEditPlan
impl UnwindSafe for TextObjectEditPlan
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