pub struct ChunkRecord {
pub hash: ChunkHash,
pub data_offset: u64,
pub len_raw: u32,
pub len_stored: u32,
pub flags: u32,
}Expand description
Chunk-table record. data_offset is relative to the DATA section start.
Fields§
§hash: ChunkHash§data_offset: u64§len_raw: u32§len_stored: u32§flags: u32Trait Implementations§
Source§impl Clone for ChunkRecord
impl Clone for ChunkRecord
Source§fn clone(&self) -> ChunkRecord
fn clone(&self) -> ChunkRecord
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 ChunkRecord
impl RefUnwindSafe for ChunkRecord
impl Send for ChunkRecord
impl Sync for ChunkRecord
impl Unpin for ChunkRecord
impl UnsafeUnpin for ChunkRecord
impl UnwindSafe for ChunkRecord
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