[][src]Struct rust_htslib::htslib::z_stream_s

#[repr(C)]
pub struct z_stream_s { 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: uLong

Trait Implementations

impl Copy for z_stream_s[src]

impl Clone for z_stream_s[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for z_stream_s[src]

Auto Trait Implementations

impl !Send for z_stream_s

impl !Sync for z_stream_s

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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

impl<T> From<T> for 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]