pub enum EditKind {
Unchanged,
Inserted,
Deleted,
Modified,
}Expand description
The kind of change that affected a declaration.
Variants§
Unchanged
The declaration is unchanged between old and new.
Inserted
The declaration was inserted in the new sequence (not present in old).
Deleted
The declaration was deleted from the old sequence (not present in new).
Modified
Same name + kind but the body changed.
Trait Implementations§
impl Eq for EditKind
impl StructuralPartialEq for EditKind
Auto Trait Implementations§
impl Freeze for EditKind
impl RefUnwindSafe for EditKind
impl Send for EditKind
impl Sync for EditKind
impl Unpin for EditKind
impl UnsafeUnpin for EditKind
impl UnwindSafe for EditKind
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