#[repr(C)]pub struct lzham_z_stream {Show 14 fields
pub next_in: *const c_uchar,
pub avail_in: c_uint,
pub total_in: lzham_z_ulong,
pub next_out: *mut c_uchar,
pub avail_out: c_uint,
pub total_out: lzham_z_ulong,
pub msg: *mut c_char,
pub state: *mut lzham_z_internal_state,
pub zalloc: lzham_z_alloc_func,
pub zfree: lzham_z_free_func,
pub opaque: *mut c_void,
pub data_type: c_int,
pub adler: lzham_z_ulong,
pub reserved: lzham_z_ulong,
}Fields§
§next_in: *const c_uchar§avail_in: c_uint§total_in: lzham_z_ulong§next_out: *mut c_uchar§avail_out: c_uint§total_out: lzham_z_ulong§msg: *mut c_char§state: *mut lzham_z_internal_state§zalloc: lzham_z_alloc_func§zfree: lzham_z_free_func§opaque: *mut c_void§data_type: c_int§adler: lzham_z_ulong§reserved: lzham_z_ulongTrait Implementations§
Source§impl Clone for lzham_z_stream
impl Clone for lzham_z_stream
Source§fn clone(&self) -> lzham_z_stream
fn clone(&self) -> lzham_z_stream
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for lzham_z_stream
impl Debug for lzham_z_stream
impl Copy for lzham_z_stream
Auto Trait Implementations§
impl Freeze for lzham_z_stream
impl RefUnwindSafe for lzham_z_stream
impl !Send for lzham_z_stream
impl !Sync for lzham_z_stream
impl Unpin for lzham_z_stream
impl UnwindSafe for lzham_z_stream
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more