[][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: c_int, 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: c_intadler: 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

impl !Send for mz_stream

impl !Sync for mz_stream

Blanket Implementations

impl<T> From for T
[src]

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

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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