[][src]Struct miniz_oxide_c_api::lib_oxide::mz_stream

#[repr(C)]
pub struct mz_stream {
    pub next_in: *const u8,
    pub avail_in: c_uint,
    pub total_in: c_ulong,
    pub next_out: *mut u8,
    pub avail_out: c_uint,
    pub total_out: c_ulong,
    pub msg: *const c_char,
    pub state: *mut mz_internal_state,
    pub zalloc: Option<mz_alloc_func>,
    pub zfree: Option<mz_free_func>,
    pub opaque: *mut c_void,
    pub data_type: StateTypeEnum,
    pub adler: c_uint,
    pub reserved: c_ulong,
}

Inner stream state containing pointers to the used buffers and internal state.

Fields

next_in: *const u8

Pointer to the current start of the input buffer.

avail_in: c_uint

Length of the input buffer.

total_in: c_ulong

The total number of input bytes consumed so far.

next_out: *mut u8

Pointer to the current start of the output buffer.

avail_out: c_uint

Space in the output buffer.

total_out: c_ulong

The total number of bytes output so far.

msg: *const c_charstate: *mut mz_internal_state

Unused

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_void

Extra data to provide the allocation/deallocation functions. (Not used for the default ones)

data_type: StateTypeEnumadler: c_uint

Adler32 checksum of the data that has been compressed or uncompressed.

reserved: c_ulong

Reserved

Trait Implementations

impl Default for mz_stream[src]

impl Debug for mz_stream[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]