[][src]Struct libjpegturbo_sys::jpeg_progress_mgr

#[repr(C)]pub struct jpeg_progress_mgr {
    pub progress_monitor: Option<unsafe extern "C" fn(cinfo: j_common_ptr)>,
    pub pass_counter: c_long,
    pub pass_limit: c_long,
    pub completed_passes: c_int,
    pub total_passes: c_int,
}

Fields

progress_monitor: Option<unsafe extern "C" fn(cinfo: j_common_ptr)>pass_counter: c_longpass_limit: c_longcompleted_passes: c_inttotal_passes: c_int

Trait Implementations

impl Clone for jpeg_progress_mgr[src]

impl Copy for jpeg_progress_mgr[src]

impl Debug for jpeg_progress_mgr[src]

Auto Trait Implementations

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.