Enum zstd_sys::ZSTD_dictLoadMethod_e
source · #[repr(u32)]
pub enum ZSTD_dictLoadMethod_e {
ZSTD_dlm_byCopy,
ZSTD_dlm_byRef,
}Variants§
ZSTD_dlm_byCopy
< Copy dictionary content internally
ZSTD_dlm_byRef
< Reference dictionary content – the dictionary buffer must outlive its users.
Trait Implementations§
source§impl Clone for ZSTD_dictLoadMethod_e
impl Clone for ZSTD_dictLoadMethod_e
source§fn clone(&self) -> ZSTD_dictLoadMethod_e
fn clone(&self) -> ZSTD_dictLoadMethod_e
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 ZSTD_dictLoadMethod_e
impl Debug for ZSTD_dictLoadMethod_e
source§impl Hash for ZSTD_dictLoadMethod_e
impl Hash for ZSTD_dictLoadMethod_e
source§impl PartialEq<ZSTD_dictLoadMethod_e> for ZSTD_dictLoadMethod_e
impl PartialEq<ZSTD_dictLoadMethod_e> for ZSTD_dictLoadMethod_e
source§fn eq(&self, other: &ZSTD_dictLoadMethod_e) -> bool
fn eq(&self, other: &ZSTD_dictLoadMethod_e) -> bool
This method tests for
self and other values to be equal, and is used
by ==.