pub struct InflateState {
    decomp: DecompressorOxide,
    dict: [u8; 32768],
    dict_ofs: usize,
    dict_avail: usize,
    first_call: bool,
    has_flushed: bool,
    data_format: DataFormat,
    last_status: TINFLStatus,
}
Expand description

A struct that compbines a decompressor with extra data for streaming decompression.

Fields§

§decomp: DecompressorOxide§dict: [u8; 32768]§dict_ofs: usize§dict_avail: usize§first_call: bool§has_flushed: bool§data_format: DataFormat§last_status: TINFLStatus

Implementations§

source§

impl InflateState

source

pub fn new(data_format: DataFormat) -> InflateState

Create a new state.

Note that this struct is quite large due to internal buffers, and as such storing it on the stack is not recommended.

Parameters

data_format: Determines whether the compressed data is assumed to wrapped with zlib metadata.

source

pub fn new_boxed(data_format: DataFormat) -> Box<InflateState, Global>

Create a new state on the heap.

Parameters

data_format: Determines whether the compressed data is assumed to wrapped with zlib metadata.

source

pub fn decompressor(&mut self) -> &mut DecompressorOxide

Access the innner decompressor.

source

pub const fn last_status(&self) -> TINFLStatus

Return the status of the last call to inflate with this InflateState.

source

pub fn new_boxed_with_window_bits(window_bits: i32) -> Box<InflateState, Global>

Create a new state using miniz/zlib style window bits parameter.

The decompressor does not support different window sizes. As such, any positive (>0) value will set the zlib header flag, while a negative one will not.

source

pub fn reset(&mut self, data_format: DataFormat)

Reset the decompressor without re-allocating memory, using the given data format.

source

pub fn reset_as<T>(&mut self, policy: T)where T: ResetPolicy,

Resets the state according to specified policy.

Trait Implementations§

source§

impl Default for InflateState

source§

fn default() -> InflateState

Returns the “default value” for a type. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere 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 Twhere 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 Twhere 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 Twhere 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.