Enum difference::Difference
source · [−]Expand description
Defines the contents of a changeset Changesets will be delivered in order of appearance in the original string Sequences of the same kind will be grouped into one Difference
Variants
Same(String)
Sequences that are the same
Add(String)
Sequences that are an addition (don’t appear in the first string)
Rem(String)
Sequences that are a removal (don’t appear in the second string)
Trait Implementations
sourceimpl Debug for Difference
impl Debug for Difference
sourceimpl PartialEq<Difference> for Difference
impl PartialEq<Difference> for Difference
sourcefn eq(&self, other: &Difference) -> bool
fn eq(&self, other: &Difference) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &Difference) -> bool
fn ne(&self, other: &Difference) -> bool
This method tests for !=
.
impl StructuralPartialEq for Difference
Auto Trait Implementations
impl RefUnwindSafe for Difference
impl Send for Difference
impl Sync for Difference
impl Unpin for Difference
impl UnwindSafe for Difference
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more