[][src]Struct libjpegturbo_sys::jpeg_component_info

#[repr(C)]pub struct jpeg_component_info {
    pub component_id: c_int,
    pub component_index: c_int,
    pub h_samp_factor: c_int,
    pub v_samp_factor: c_int,
    pub quant_tbl_no: c_int,
    pub dc_tbl_no: c_int,
    pub ac_tbl_no: c_int,
    pub width_in_blocks: JDIMENSION,
    pub height_in_blocks: JDIMENSION,
    pub DCT_scaled_size: c_int,
    pub downsampled_width: JDIMENSION,
    pub downsampled_height: JDIMENSION,
    pub component_needed: boolean,
    pub MCU_width: c_int,
    pub MCU_height: c_int,
    pub MCU_blocks: c_int,
    pub MCU_sample_width: c_int,
    pub last_col_width: c_int,
    pub last_row_height: c_int,
    pub quant_table: *mut JQUANT_TBL,
    pub dct_table: *mut c_void,
}

Fields

component_id: c_intcomponent_index: c_inth_samp_factor: c_intv_samp_factor: c_intquant_tbl_no: c_intdc_tbl_no: c_intac_tbl_no: c_intwidth_in_blocks: JDIMENSIONheight_in_blocks: JDIMENSIONDCT_scaled_size: c_intdownsampled_width: JDIMENSIONdownsampled_height: JDIMENSIONcomponent_needed: booleanMCU_width: c_intMCU_height: c_intMCU_blocks: c_intMCU_sample_width: c_intlast_col_width: c_intlast_row_height: c_intquant_table: *mut JQUANT_TBLdct_table: *mut c_void

Trait Implementations

impl Clone for jpeg_component_info[src]

impl Copy for jpeg_component_info[src]

impl Debug for jpeg_component_info[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.