pub struct MetaChunk {
pub chunk_count: u32,
pub entries_per_chunk: u32,
pub entry_count: u64,
pub compression_method: Option<String>,
}Fields§
§chunk_count: u32§entries_per_chunk: u32§entry_count: u64§compression_method: Option<String>Implementations§
Trait Implementations§
Source§impl From<&MetaChunk> for GenericChunk
impl From<&MetaChunk> for GenericChunk
Source§fn from(chunk: &MetaChunk) -> GenericChunk
fn from(chunk: &MetaChunk) -> GenericChunk
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for MetaChunk
impl RefUnwindSafe for MetaChunk
impl Send for MetaChunk
impl Sync for MetaChunk
impl Unpin for MetaChunk
impl UnwindSafe for MetaChunk
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