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_uint
§d: c_uint
§steps: c_uint
§nbThreads: c_uint
§splitPoint: f64
§shrinkDict: c_uint
§shrinkDictMaxRegression: c_uint
§zParams: ZDICT_params_t
Trait Implementations§
source§impl Clone for ZDICT_cover_params_t
impl Clone for ZDICT_cover_params_t
source§fn clone(&self) -> ZDICT_cover_params_t
fn clone(&self) -> ZDICT_cover_params_t
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl 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§
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