[][src]Struct miniz_oxide_c_api::tdefl_compressor

#[repr(C)]
pub struct tdefl_compressor { pub inner: Option<CompressorOxide>, pub callback: Option<CallbackFunc>, }
[]

Main compression struct. Not the same as CompressorOxide

Fields

inner: Option<CompressorOxide>callback: Option<CallbackFunc>

Methods

impl tdefl_compressor[src][]

pub fn drop_inner(&mut self)[src][]

Sets the inner state to None and thus drops it.

pub fn adler32(&self) -> u32[src]

pub fn prev_return_status(&self) -> TDEFLStatus[src]

pub fn flags(&self) -> i32[src]

Trait Implementations

impl StateType for tdefl_compressor[src][+]

Auto Trait Implementations

impl !Send for tdefl_compressor

impl !Sync for tdefl_compressor

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][]