pub enum Difference {
Same(String),
Add(String),
Rem(String),
}
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§
Source§impl Debug for Difference
impl Debug for Difference
Source§impl PartialEq for Difference
impl PartialEq for Difference
impl StructuralPartialEq for Difference
Auto Trait Implementations§
impl Freeze for Difference
impl RefUnwindSafe for Difference
impl Send for Difference
impl Sync for Difference
impl Unpin for Difference
impl UnwindSafe for Difference
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