Struct miniz_oxide::inflate::core::DecompressorOxide
source · pub struct DecompressorOxide {Show 19 fields
state: State,
num_bits: u32,
z_header0: u32,
z_header1: u32,
z_adler32: u32,
finish: u8,
block_type: u8,
check_adler32: u32,
dist: u32,
counter: u32,
num_extra: u8,
table_sizes: [u16; 3],
bit_buf: u64,
tables: [HuffmanTable; 3],
code_size_literal: [u8; 288],
code_size_dist: [u8; 32],
code_size_huffman: [u8; 19],
raw_header: [u8; 4],
len_codes: [u8; 457],
}
Expand description
Main decompression struct.
Fields§
§state: State
Current state of the decompressor.
num_bits: u32
Number of bits in the bit buffer.
z_header0: u32
Zlib CMF
z_header1: u32
Zlib FLG
z_adler32: u32
Adler32 checksum from the zlib header.
finish: u8
1 if the current block is the last block, 0 otherwise.
block_type: u8
The type of the current block. or if in a dynamic block, which huffman table we are currently
check_adler32: u32
1 if the adler32 value should be checked.
dist: u32
Last match distance.
counter: u32
Variable used for match length, symbols, and a number of other things.
num_extra: u8
Number of extra bits for the last length or distance code.
table_sizes: [u16; 3]
Number of entries in each huffman table.
bit_buf: u64
Buffer of input data.
tables: [HuffmanTable; 3]
Huffman tables.
code_size_literal: [u8; 288]
§code_size_dist: [u8; 32]
§code_size_huffman: [u8; 19]
§raw_header: [u8; 4]
Raw block header.
len_codes: [u8; 457]
Huffman length codes.
Implementations§
source§impl DecompressorOxide
impl DecompressorOxide
sourcepub fn new() -> DecompressorOxide
pub fn new() -> DecompressorOxide
Create a new tinfl_decompressor with all fields set to 0.
sourcepub fn adler32(&self) -> Option<u32>
pub fn adler32(&self) -> Option<u32>
Returns the adler32 checksum of the currently decompressed data. Note: Will return Some(1) if decompressing zlib but ignoring adler32.
sourcepub fn adler32_header(&self) -> Option<u32>
pub fn adler32_header(&self) -> Option<u32>
Returns the adler32 that was read from the zlib header if it exists.
Trait Implementations§
source§impl Clone for DecompressorOxide
impl Clone for DecompressorOxide
source§fn clone(&self) -> DecompressorOxide
fn clone(&self) -> DecompressorOxide
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreAuto Trait Implementations§
impl Freeze for DecompressorOxide
impl RefUnwindSafe for DecompressorOxide
impl Send for DecompressorOxide
impl Sync for DecompressorOxide
impl Unpin for DecompressorOxide
impl UnwindSafe for DecompressorOxide
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)