pub enum DiffElement<V> {
Unequal(V, V),
Left(V),
Right(V),
}
Variants§
Implementations§
Trait Implementations§
Source§impl<V: Debug> Debug for DiffElement<V>
impl<V: Debug> Debug for DiffElement<V>
Source§impl<V: PartialEq> PartialEq for DiffElement<V>
impl<V: PartialEq> PartialEq for DiffElement<V>
impl<V: Eq> Eq for DiffElement<V>
impl<V> StructuralPartialEq for DiffElement<V>
Auto Trait Implementations§
impl<V> Freeze for DiffElement<V>where
V: Freeze,
impl<V> RefUnwindSafe for DiffElement<V>where
V: RefUnwindSafe,
impl<V> Send for DiffElement<V>where
V: Send,
impl<V> Sync for DiffElement<V>where
V: Sync,
impl<V> Unpin for DiffElement<V>where
V: Unpin,
impl<V> UnwindSafe for DiffElement<V>where
V: 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