[][src]Struct lzham_sys::lzham_compress_params

#[repr(C)]pub struct lzham_compress_params {
    pub m_struct_size: lzham_uint32,
    pub m_dict_size_log2: lzham_uint32,
    pub m_level: lzham_compress_level,
    pub m_table_update_rate: lzham_uint32,
    pub m_max_helper_threads: lzham_int32,
    pub m_compress_flags: lzham_uint32,
    pub m_num_seed_bytes: lzham_uint32,
    pub m_pSeed_bytes: *const c_void,
    pub m_table_max_update_interval: lzham_uint32,
    pub m_table_update_interval_slow_rate: lzham_uint32,
}

Fields

m_struct_size: lzham_uint32m_dict_size_log2: lzham_uint32m_level: lzham_compress_levelm_table_update_rate: lzham_uint32m_max_helper_threads: lzham_int32m_compress_flags: lzham_uint32m_num_seed_bytes: lzham_uint32m_pSeed_bytes: *const c_voidm_table_max_update_interval: lzham_uint32m_table_update_interval_slow_rate: lzham_uint32

Trait Implementations

impl Clone for lzham_compress_params[src]

impl Copy for lzham_compress_params[src]

impl Debug for lzham_compress_params[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.