pub struct DiffChunk {
pub old_start: usize,
pub old_count: usize,
pub new_start: usize,
pub new_count: usize,
pub lines: Box<[DiffLine]>,
}
Fields§
§old_start: usize
§old_count: usize
§new_start: usize
§new_count: usize
§lines: Box<[DiffLine]>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DiffChunk
impl RefUnwindSafe for DiffChunk
impl Send for DiffChunk
impl Sync for DiffChunk
impl Unpin for DiffChunk
impl UnwindSafe for DiffChunk
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