pub enum DiffOp<'a> {
Equal(&'a str),
Insert(&'a str),
Delete(&'a str),
}Expand description
Edit operation from Myers diff
Variants§
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for DiffOp<'a>
impl<'a> RefUnwindSafe for DiffOp<'a>
impl<'a> Send for DiffOp<'a>
impl<'a> Sync for DiffOp<'a>
impl<'a> Unpin for DiffOp<'a>
impl<'a> UnsafeUnpin for DiffOp<'a>
impl<'a> UnwindSafe for DiffOp<'a>
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