Struct libz_sys::z_stream[][src]

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

Trait Implementations

impl Clone for z_stream[src]

impl Copy for z_stream[src]

Auto Trait Implementations

impl RefUnwindSafe for z_stream

impl !Send for z_stream

impl !Sync for z_stream

impl Unpin for z_stream

impl UnwindSafe for z_stream

Blanket Implementations

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

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

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

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

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

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

type Owned = T

The resulting type after obtaining ownership.

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.