pub struct Line<'a> {
pub left_offs: usize,
pub right_offs: usize,
pub content: Vec<(&'a u8, Side)>,
}
Expand description
A single diff line.
Represents a single line in a diff (batch of bytes aligned to a given width).
Fields§
§left_offs: usize
Starting offset of the line in the left file.
right_offs: usize
Starting offset of the line in the right file.
content: Vec<(&'a u8, Side)>
Bytes the line consists of.
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for Line<'a>
impl<'a> RefUnwindSafe for Line<'a>
impl<'a> Send for Line<'a>
impl<'a> Sync for Line<'a>
impl<'a> Unpin for Line<'a>
impl<'a> UnwindSafe for Line<'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