pub struct RelaxDelta {
pub input_offset: u64,
pub cumulative_deleted: u64,
pub bytes_deleted: u32,
}Expand description
Records the number of bytes deleted at a specific offset within an input section.
Fields§
§input_offset: u64Offset within the input section where the deletion occurs.
cumulative_deleted: u64Cumulative bytes deleted up to and including this entry.
bytes_deleted: u32Number of bytes deleted at this position.
Trait Implementations§
Source§impl Clone for RelaxDelta
impl Clone for RelaxDelta
Source§fn clone(&self) -> RelaxDelta
fn clone(&self) -> RelaxDelta
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 moreSource§impl Debug for RelaxDelta
impl Debug for RelaxDelta
Source§impl PartialEq for RelaxDelta
impl PartialEq for RelaxDelta
Source§fn eq(&self, other: &RelaxDelta) -> bool
fn eq(&self, other: &RelaxDelta) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for RelaxDelta
impl Eq for RelaxDelta
impl StructuralPartialEq for RelaxDelta
Auto Trait Implementations§
impl Freeze for RelaxDelta
impl RefUnwindSafe for RelaxDelta
impl Send for RelaxDelta
impl Sync for RelaxDelta
impl Unpin for RelaxDelta
impl UnsafeUnpin for RelaxDelta
impl UnwindSafe for RelaxDelta
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