pub struct DiffLine<'a> {
pub left_line_number: u32,
pub right_line_number: u32,
pub has_left_content: bool,
pub has_right_content: bool,
pub hunks: Vec<DiffHunk<'a>>,
}
Fields§
§left_line_number: u32
§right_line_number: u32
§has_left_content: bool
§has_right_content: bool
§hunks: Vec<DiffHunk<'a>>
Implementations§
Trait Implementations§
source§impl<'a> PartialEq for DiffLine<'a>
impl<'a> PartialEq for DiffLine<'a>
impl<'a> Eq for DiffLine<'a>
impl<'a> StructuralEq for DiffLine<'a>
impl<'a> StructuralPartialEq for DiffLine<'a>
Auto Trait Implementations§
impl<'a> RefUnwindSafe for DiffLine<'a>
impl<'a> Send for DiffLine<'a>
impl<'a> Sync for DiffLine<'a>
impl<'a> Unpin for DiffLine<'a>
impl<'a> UnwindSafe for DiffLine<'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