Struct lzma_rs::decompress::raw::LzmaProperties
source · Available on
raw_decoder
only.Expand description
LZMA ‘lclppb’ decompression properties.
Fields§
§lc: u32
The number of literal context bits.
The most lc
significant bits of the previous byte are part of the literal context.
lc
must not be greater than 8.
lp: u32
The number of literal position bits.
lp
must not be greater than 4.
pb: u32
The number of position bits.
The context for literal/match is plaintext offset modulo 2^pb
.
pb
must not be greater than 4.
Trait Implementations§
source§impl Clone for LzmaProperties
impl Clone for LzmaProperties
source§fn clone(&self) -> LzmaProperties
fn clone(&self) -> LzmaProperties
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 more