pub struct Delta {
pub blocks: Vec<Block>,
pub window: usize,
}
Expand description
The result of comparing two files
Fields§
§blocks: Vec<Block>
Description of the new file in terms of blocks.
window: usize
Size of the window.
Trait Implementations§
impl StructuralPartialEq for Delta
Auto Trait Implementations§
impl Freeze for Delta
impl RefUnwindSafe for Delta
impl Send for Delta
impl Sync for Delta
impl Unpin for Delta
impl UnwindSafe for Delta
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