pub enum Diff<T> {
Change(T),
Remove,
Keep,
Add(T),
}
Expand description
The difference between two iterator elements.
Variants§
Change(T)
Changed item. The element of the left-hand side iterator differs from that of the right-hand side iterator. The new element is returned contained in this variant.
Remove
Removed item. The element of the left-hand side iterator is not present in the right-hand side iterator.
Keep
Kept item. The element of the left-hand side iterator is the same as the element of the right-hand side iterator.
Add(T)
Added item. The left-hand side iterator does not contain this element of the right-hand side iterator.
Trait Implementations§
Source§impl<T: Ord> Ord for Diff<T>
impl<T: Ord> Ord for Diff<T>
Source§impl<T: PartialOrd> PartialOrd for Diff<T>
impl<T: PartialOrd> PartialOrd for Diff<T>
impl<T: Copy> Copy for Diff<T>
impl<T: Eq> Eq for Diff<T>
impl<T> StructuralPartialEq for Diff<T>
Auto Trait Implementations§
impl<T> Freeze for Diff<T>where
T: Freeze,
impl<T> RefUnwindSafe for Diff<T>where
T: RefUnwindSafe,
impl<T> Send for Diff<T>where
T: Send,
impl<T> Sync for Diff<T>where
T: Sync,
impl<T> Unpin for Diff<T>where
T: Unpin,
impl<T> UnwindSafe for Diff<T>where
T: UnwindSafe,
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