Struct flate2::ffi::rust::inflate::core::DecompressorOxide

source ·
pub struct DecompressorOxide {
Show 16 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],
}
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

source

pub fn new() -> DecompressorOxide

Create a new tinfl_decompressor with all fields set to 0.

source

pub fn init(&mut self)

Set the current state to Start.

source

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.

source

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

source§

fn default() -> DecompressorOxide

Create a new tinfl_decompressor with all fields set to 0.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.