pub struct Delta {
pub source_size: u64,
pub target_size: u64,
pub ops: Vec<Op>,
}Expand description
Delta patch container
Fields§
§source_size: u64Source size (original file)
target_size: u64Target size (result file)
ops: Vec<Op>Sequence of operations
Implementations§
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 UnsafeUnpin 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