struct ParamsOxide {
Show 17 fields pub flags: u32, pub greedy_parsing: bool, pub block_index: u32, pub saved_match_dist: u32, pub saved_match_len: u32, pub saved_lit: u8, pub flush: TDEFLFlush, pub flush_ofs: u32, pub flush_remaining: u32, pub finished: bool, pub adler32: u32, pub src_pos: usize, pub out_buf_ofs: usize, pub prev_return_status: TDEFLStatus, pub saved_bit_buffer: u32, pub saved_bits_in: u32, pub local_buf: Box<LocalBuf>,
}

Fields§

§flags: u32§greedy_parsing: bool§block_index: u32§saved_match_dist: u32§saved_match_len: u32§saved_lit: u8§flush: TDEFLFlush§flush_ofs: u32§flush_remaining: u32§finished: bool§adler32: u32§src_pos: usize§out_buf_ofs: usize§prev_return_status: TDEFLStatus§saved_bit_buffer: u32§saved_bits_in: u32§local_buf: Box<LocalBuf>

Implementations§

source§

impl ParamsOxide

source

fn new(flags: u32) -> Self

source

fn update_flags(&mut self, flags: u32)

source

fn reset(&mut self)

Reset state, saving settings.

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.