pub enum EditType {
Insert,
Update,
Copy,
Move,
Delete,
}Expand description
Types of edit operations.
Variants§
Insert
Node was inserted (new content).
Update
Node content was updated.
Copy
Node was copied from base.
Move
Node was moved from original location.
Delete
Node was deleted.
Implementations§
Trait Implementations§
impl Copy for EditType
impl Eq for EditType
impl StructuralPartialEq for EditType
Auto Trait Implementations§
impl Freeze for EditType
impl RefUnwindSafe for EditType
impl Send for EditType
impl Sync for EditType
impl Unpin for EditType
impl UnwindSafe for EditType
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