Struct libraw_sys::tiff_ifd_t[][src]

#[repr(C)]pub struct tiff_ifd_t {
    pub t_width: c_int,
    pub t_height: c_int,
    pub bps: c_int,
    pub comp: c_int,
    pub phint: c_int,
    pub offset: c_int,
    pub t_flip: c_int,
    pub samples: c_int,
    pub bytes: c_int,
    pub extrasamples: c_int,
    pub t_tile_width: c_int,
    pub t_tile_length: c_int,
    pub sample_format: c_int,
    pub predictor: c_int,
    pub rows_per_strip: c_int,
    pub strip_offsets: *mut c_int,
    pub strip_offsets_count: c_int,
    pub strip_byte_counts: *mut c_int,
    pub strip_byte_counts_count: c_int,
    pub t_filters: c_uint,
    pub t_vwidth: c_int,
    pub t_vheight: c_int,
    pub t_lm: c_int,
    pub t_tm: c_int,
    pub t_fuji_width: c_int,
    pub t_shutter: f32,
    pub opcode2_offset: INT64,
    pub lineartable_offset: INT64,
    pub lineartable_len: c_int,
    pub dng_color: [libraw_dng_color_t; 2],
    pub dng_levels: libraw_dng_levels_t,
    pub newsubfiletype: c_int,
}

Fields

t_width: c_intt_height: c_intbps: c_intcomp: c_intphint: c_intoffset: c_intt_flip: c_intsamples: c_intbytes: c_intextrasamples: c_intt_tile_width: c_intt_tile_length: c_intsample_format: c_intpredictor: c_introws_per_strip: c_intstrip_offsets: *mut c_intstrip_offsets_count: c_intstrip_byte_counts: *mut c_intstrip_byte_counts_count: c_intt_filters: c_uintt_vwidth: c_intt_vheight: c_intt_lm: c_intt_tm: c_intt_fuji_width: c_intt_shutter: f32opcode2_offset: INT64lineartable_offset: INT64lineartable_len: c_intdng_color: [libraw_dng_color_t; 2]dng_levels: libraw_dng_levels_tnewsubfiletype: c_int

Trait Implementations

impl Clone for tiff_ifd_t[src]

impl Copy for tiff_ifd_t[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, 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.