pub struct DecompressorOxide {}
Expand description
Main decompression struct.
Fields§
§state: State
§num_bits: u32
§z_header0: u32
§z_header1: u32
§z_adler32: u32
§finish: u32
§block_type: u32
§check_adler32: u32
§dist: u32
§counter: u32
§num_extra: u32
§table_sizes: [u32; 3]
§bit_buf: u64
§tables: [HuffmanTable; 3]
§raw_header: [u8; 4]
§len_codes: [u8; 457]
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 Default for DecompressorOxide
impl Default for DecompressorOxide
source§fn default() -> DecompressorOxide
fn default() -> DecompressorOxide
Create a new tinfl_decompressor with all fields set to 0.
Auto 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
Mutably borrows from an owned value. Read more