[][src]Struct lzzzz::lz4f::FrameInfo

#[repr(C)]pub struct FrameInfo { /* fields omitted */ }

LZ4 Frame parameters.

Implementations

impl FrameInfo[src]

pub const fn block_size(&self) -> BlockSize[src]

Returns the block size.

pub const fn block_mode(&self) -> BlockMode[src]

Returns the block mode.

pub const fn content_checksum(&self) -> ContentChecksum[src]

Returns the content checksum.

pub const fn frame_type(&self) -> FrameType[src]

Returns the frame type.

pub const fn content_size(&self) -> usize[src]

Returns the content size.

pub const fn dict_id(&self) -> u32[src]

Returns the dictionary id.

pub const fn block_checksum(&self) -> BlockChecksum[src]

Returns the block checksum.

Trait Implementations

impl Clone for FrameInfo[src]

impl Copy for FrameInfo[src]

impl Debug for FrameInfo[src]

impl Default for FrameInfo[src]

impl Eq for FrameInfo[src]

impl Hash for FrameInfo[src]

impl PartialEq<FrameInfo> for FrameInfo[src]

impl StructuralEq for FrameInfo[src]

impl StructuralPartialEq for FrameInfo[src]

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.