pub struct WrittenChunk {
pub address: u64,
pub compressed_size: u64,
pub raw_size: u64,
pub filter_mask: u32,
}Expand description
A chunk that has been written to the file buffer.
Fields§
§address: u64Address within the file where chunk data starts.
compressed_size: u64Size of the (possibly compressed) chunk data in bytes.
raw_size: u64Original uncompressed size in bytes.
filter_mask: u32Filter mask (0 = all filters applied).
Trait Implementations§
Source§impl Clone for WrittenChunk
impl Clone for WrittenChunk
Source§fn clone(&self) -> WrittenChunk
fn clone(&self) -> WrittenChunk
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 WrittenChunk
impl RefUnwindSafe for WrittenChunk
impl Send for WrittenChunk
impl Sync for WrittenChunk
impl Unpin for WrittenChunk
impl UnsafeUnpin for WrittenChunk
impl UnwindSafe for WrittenChunk
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