#[repr(i32)]pub enum ZSTD_dParameter {
ZSTD_d_windowLogMax = 100,
ZSTD_d_format = 1_000,
}Expand description
Port of ZSTD_dParameter — parametric decoder configuration.
Only the subset we honor is exposed; callers setting unsupported
ids get ParameterUnsupported.
Variants§
ZSTD_d_windowLogMax = 100
ZSTD_d_format = 1_000
Upstream ZSTD_d_format = ZSTD_d_experimentalParam1 (1000).
Toggles between ZSTD_f_zstd1 and ZSTD_f_zstd1_magicless.
Trait Implementations§
Source§impl Clone for ZSTD_dParameter
impl Clone for ZSTD_dParameter
Source§fn clone(&self) -> ZSTD_dParameter
fn clone(&self) -> ZSTD_dParameter
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for ZSTD_dParameter
Source§impl Debug for ZSTD_dParameter
impl Debug for ZSTD_dParameter
impl Eq for ZSTD_dParameter
Source§impl PartialEq for ZSTD_dParameter
impl PartialEq for ZSTD_dParameter
impl StructuralPartialEq for ZSTD_dParameter
Auto Trait Implementations§
impl Freeze for ZSTD_dParameter
impl RefUnwindSafe for ZSTD_dParameter
impl Send for ZSTD_dParameter
impl Sync for ZSTD_dParameter
impl Unpin for ZSTD_dParameter
impl UnsafeUnpin for ZSTD_dParameter
impl UnwindSafe for ZSTD_dParameter
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