pub struct DeltaMetadata {
pub base_snapshot: u64,
pub algorithm: u8,
pub compression: u8,
}Expand description
Decoded view over delta metadata (mode 0x04).
Fields§
§base_snapshot: u64Base snapshot identifier.
algorithm: u8Delta algorithm identifier.
compression: u8Compression hint identifier.
Trait Implementations§
Source§impl Clone for DeltaMetadata
impl Clone for DeltaMetadata
Source§fn clone(&self) -> DeltaMetadata
fn clone(&self) -> DeltaMetadata
Returns a duplicate of the value. Read more
1.0.0 · 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 DeltaMetadata
impl Debug for DeltaMetadata
Source§impl PartialEq for DeltaMetadata
impl PartialEq for DeltaMetadata
impl Copy for DeltaMetadata
impl Eq for DeltaMetadata
impl StructuralPartialEq for DeltaMetadata
Auto Trait Implementations§
impl Freeze for DeltaMetadata
impl RefUnwindSafe for DeltaMetadata
impl Send for DeltaMetadata
impl Sync for DeltaMetadata
impl Unpin for DeltaMetadata
impl UnwindSafe for DeltaMetadata
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.