Enum levenshtein_diff::edit::Edit
source · [−]Expand description
Represents an Edit applied on a source sequence.
Variants
Delete(usize)
Insert(usize, T)
Substitute(usize, T)
Trait Implementations
impl<T: PartialEq> StructuralPartialEq for Edit<T>
Auto Trait Implementations
impl<T> RefUnwindSafe for Edit<T> where
T: RefUnwindSafe,
impl<T> Send for Edit<T> where
T: Send,
impl<T> Sync for Edit<T> where
T: Sync,
impl<T> Unpin for Edit<T> where
T: Unpin,
impl<T> UnwindSafe for Edit<T> where
T: UnwindSafe,
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