pub struct PatchConflict {
pub first_index: usize,
pub second_index: usize,
pub first_start: usize,
pub first_end: usize,
pub second_start: usize,
pub second_end: usize,
}Fields§
§first_index: usize§second_index: usize§first_start: usize§first_end: usize§second_start: usize§second_end: usizeTrait Implementations§
Source§impl Clone for PatchConflict
impl Clone for PatchConflict
Source§fn clone(&self) -> PatchConflict
fn clone(&self) -> PatchConflict
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PatchConflict
impl Debug for PatchConflict
Source§impl PartialEq for PatchConflict
impl PartialEq for PatchConflict
impl Eq for PatchConflict
impl StructuralPartialEq for PatchConflict
Auto Trait Implementations§
impl Freeze for PatchConflict
impl RefUnwindSafe for PatchConflict
impl Send for PatchConflict
impl Sync for PatchConflict
impl Unpin for PatchConflict
impl UnsafeUnpin for PatchConflict
impl UnwindSafe for PatchConflict
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