Struct libraw_sys::libraw_data_t[][src]

#[repr(C)]pub struct libraw_data_t {
    pub image: *mut [ushort; 4],
    pub sizes: libraw_image_sizes_t,
    pub idata: libraw_iparams_t,
    pub lens: libraw_lensinfo_t,
    pub makernotes: libraw_makernotes_t,
    pub shootinginfo: libraw_shootinginfo_t,
    pub params: libraw_output_params_t,
    pub progress_flags: c_uint,
    pub process_warnings: c_uint,
    pub color: libraw_colordata_t,
    pub other: libraw_imgother_t,
    pub thumbnail: libraw_thumbnail_t,
    pub rawdata: libraw_rawdata_t,
    pub parent_class: *mut c_void,
}

Fields

image: *mut [ushort; 4]sizes: libraw_image_sizes_tidata: libraw_iparams_tlens: libraw_lensinfo_tmakernotes: libraw_makernotes_tshootinginfo: libraw_shootinginfo_tparams: libraw_output_params_tprogress_flags: c_uintprocess_warnings: c_uintcolor: libraw_colordata_tother: libraw_imgother_tthumbnail: libraw_thumbnail_trawdata: libraw_rawdata_tparent_class: *mut c_void

Trait Implementations

impl Clone for libraw_data_t[src]

impl Copy for libraw_data_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.