pub struct Batch<'a> {
pub lines: Vec<Line<'a>>,
pub left_diff: usize,
pub right_diff: usize,
}
Expand description
A batch of lines.
Represents a batch of one or more diffs with context before and after.
Fields§
§lines: Vec<Line<'a>>
The lines in the batch.
left_diff: usize
Number of different bytes in the left file in this batch.
right_diff: usize
Number of different bytes in the right file in this batch.
Auto Trait Implementations§
impl<'a> Freeze for Batch<'a>
impl<'a> RefUnwindSafe for Batch<'a>
impl<'a> Send for Batch<'a>
impl<'a> Sync for Batch<'a>
impl<'a> Unpin for Batch<'a>
impl<'a> UnwindSafe for Batch<'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