Struct minimap2_sys::z_stream_s
source · [−]#[repr(C)]pub struct z_stream_s {Show 14 fields
pub next_in: *mut Bytef,
pub avail_in: uInt,
pub total_in: uLong,
pub next_out: *mut Bytef,
pub avail_out: uInt,
pub total_out: uLong,
pub msg: *mut c_char,
pub state: *mut internal_state,
pub zalloc: alloc_func,
pub zfree: free_func,
pub opaque: voidpf,
pub data_type: c_int,
pub adler: uLong,
pub reserved: uLong,
}Fields
next_in: *mut Bytefavail_in: uInttotal_in: uLongnext_out: *mut Bytefavail_out: uInttotal_out: uLongmsg: *mut c_charstate: *mut internal_statezalloc: alloc_funczfree: free_funcopaque: voidpfdata_type: c_intadler: uLongreserved: uLongTrait Implementations
sourceimpl Clone for z_stream_s
impl Clone for z_stream_s
sourcefn clone(&self) -> z_stream_s
fn clone(&self) -> z_stream_s
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for z_stream_s
impl Debug for z_stream_s
impl Copy for z_stream_s
Auto Trait Implementations
impl RefUnwindSafe for z_stream_s
impl !Send for z_stream_s
impl !Sync for z_stream_s
impl Unpin for z_stream_s
impl UnwindSafe for z_stream_s
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more