pub struct EqualRun {
pub old_start: usize,
pub new_start: usize,
pub len: usize,
}Expand description
One inclusive-length run of equal lines in Myers order.
Fields§
§old_start: usize§new_start: usize§len: usizeTrait Implementations§
impl Copy for EqualRun
impl Eq for EqualRun
impl StructuralPartialEq for EqualRun
Auto Trait Implementations§
impl Freeze for EqualRun
impl RefUnwindSafe for EqualRun
impl Send for EqualRun
impl Sync for EqualRun
impl Unpin for EqualRun
impl UnsafeUnpin for EqualRun
impl UnwindSafe for EqualRun
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