pub enum DeltaKind {
Added,
Removed,
Changed,
Moved,
}Expand description
What kind of change one Delta records.
Moved is part of the model but is never produced at the binary rung:
rename detection belongs to the engine, not to a content-id comparison.
Variants§
Added
The address exists only on the after side.
Removed
The address exists only on the before side.
Changed
The address exists on both sides with different content.
Moved
The content moved to a new address.
Trait Implementations§
impl Copy for DeltaKind
impl Eq for DeltaKind
impl StructuralPartialEq for DeltaKind
Auto Trait Implementations§
impl Freeze for DeltaKind
impl RefUnwindSafe for DeltaKind
impl Send for DeltaKind
impl Sync for DeltaKind
impl Unpin for DeltaKind
impl UnsafeUnpin for DeltaKind
impl UnwindSafe for DeltaKind
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