pub struct CompressedChunk {
pub compressed_data: Vec<u8>,
pub decompressed_size: usize,
}
Expand description
In-memory representation of a compressed chunk.
Fields§
§compressed_data: Vec<u8>
Compressed data for this chunk.
decompressed_size: usize
Size of this chunk when decompressed.
Auto Trait Implementations§
impl Freeze for CompressedChunk
impl RefUnwindSafe for CompressedChunk
impl Send for CompressedChunk
impl Sync for CompressedChunk
impl Unpin for CompressedChunk
impl UnwindSafe for CompressedChunk
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