[][src]Struct bdf::chunks::MetaChunk

pub struct MetaChunk {
    pub chunk_count: u32,
    pub entries_per_chunk: u32,
    pub entry_count: u64,
    pub compression_method: Option<String>,
}

Fields

chunk_count: u32entries_per_chunk: u32entry_count: u64compression_method: Option<String>

Methods

impl MetaChunk[src]

pub fn new(entry_count: u64, entries_per_chunk: u32, compress: bool) -> Self[src]

Creates a new meta chunk

pub fn serialize(&self) -> Vec<u8>[src]

Serializes the chunk into bytes

Trait Implementations

impl Clone for MetaChunk[src]

impl Debug for MetaChunk[src]

impl<'_> From<&'_ MetaChunk> for GenericChunk[src]

impl TryFrom<GenericChunk> for MetaChunk[src]

type Error = Error

The type returned in the event of a conversion error.

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.