pub struct BinaryPatchPayload {
pub forward_compressed: Vec<u8>,
pub forward_declared_size: usize,
pub reverse_compressed: Vec<u8>,
pub reverse_declared_size: usize,
}Expand description
Binary patch payload as compressed base85 chunks for forward/reverse apply.
Fields§
§forward_compressed: Vec<u8>§forward_declared_size: usize§reverse_compressed: Vec<u8>§reverse_declared_size: usizeTrait Implementations§
Source§impl Clone for BinaryPatchPayload
impl Clone for BinaryPatchPayload
Source§fn clone(&self) -> BinaryPatchPayload
fn clone(&self) -> BinaryPatchPayload
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for BinaryPatchPayload
impl RefUnwindSafe for BinaryPatchPayload
impl Send for BinaryPatchPayload
impl Sync for BinaryPatchPayload
impl Unpin for BinaryPatchPayload
impl UnsafeUnpin for BinaryPatchPayload
impl UnwindSafe for BinaryPatchPayload
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