[−][src]Struct miniz_oxide_c_api::lib_oxide::mz_stream
Inner stream state containing pointers to the used buffers and internal state.
Fields
next_in: *const u8Pointer to the current start of the input buffer.
avail_in: c_uintLength of the input buffer.
total_in: c_ulongThe total number of input bytes consumed so far.
next_out: *mut u8Pointer to the current start of the output buffer.
avail_out: c_uintSpace in the output buffer.
total_out: c_ulongThe total number of bytes output so far.
msg: *const c_charstate: *mut mz_internal_stateUnused
zalloc: Option<mz_alloc_func>Allocation function to use for allocating the internal compressor/decompressor.
Uses mz_default_alloc_func if set to None.
zfree: Option<mz_free_func>Free function to use for allocating the internal compressor/decompressor.
Uses mz_default_free_func if None.
opaque: *mut c_voidExtra data to provide the allocation/deallocation functions. (Not used for the default ones)
data_type: c_intadler: c_uintAdler32 checksum of the data that has been compressed or uncompressed.
reserved: c_ulongReserved
Trait Implementations
Auto Trait Implementations
Blanket Implementations
impl<T> From for T[src]
impl<T, U> Into for T where
U: From<T>, [src]
U: From<T>,
impl<T, U> TryFrom for T where
T: From<U>, [src]
T: From<U>,
type Error = !
try_from)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T> Borrow for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T, U> TryInto for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,