pub struct Block {
pub payload_offset: u64,
pub compressed_size: u64,
pub original_size: u64,
}Fields§
§payload_offset: u64Byte offset into the payload section where this block’s data begins.
compressed_size: u64Size of the block after compression.
original_size: u64Size of the block before compression.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Block
impl RefUnwindSafe for Block
impl Send for Block
impl Sync for Block
impl Unpin for Block
impl UnsafeUnpin for Block
impl UnwindSafe for Block
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