Struct zstd_sys::ZDICT_cover_params_t
source · [−]#[repr(C)]pub struct ZDICT_cover_params_t {
pub k: c_uint,
pub d: c_uint,
pub steps: c_uint,
pub nbThreads: c_uint,
pub splitPoint: f64,
pub shrinkDict: c_uint,
pub shrinkDictMaxRegression: c_uint,
pub zParams: ZDICT_params_t,
}Expand description
ZDICT_cover_params_t: k and d are the only required parameters. For others, value 0 means default.
Fields
k: c_uintd: c_uintsteps: c_uintnbThreads: c_uintsplitPoint: f64shrinkDict: c_uintshrinkDictMaxRegression: c_uintzParams: ZDICT_params_tTrait Implementations
sourceimpl Clone for ZDICT_cover_params_t
impl Clone for ZDICT_cover_params_t
sourcefn clone(&self) -> ZDICT_cover_params_t
fn clone(&self) -> ZDICT_cover_params_t
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for ZDICT_cover_params_t
impl Debug for ZDICT_cover_params_t
impl Copy for ZDICT_cover_params_t
Auto Trait Implementations
impl RefUnwindSafe for ZDICT_cover_params_t
impl Send for ZDICT_cover_params_t
impl Sync for ZDICT_cover_params_t
impl Unpin for ZDICT_cover_params_t
impl UnwindSafe for ZDICT_cover_params_t
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more