Struct libraw_sys::libraw_rawdata_t[][src]

#[repr(C)]pub struct libraw_rawdata_t {
    pub raw_alloc: *mut c_void,
    pub raw_image: *mut ushort,
    pub color4_image: *mut [ushort; 4],
    pub color3_image: *mut [ushort; 3],
    pub float_image: *mut f32,
    pub float3_image: *mut [f32; 3],
    pub float4_image: *mut [f32; 4],
    pub ph1_cblack: *mut [c_short; 2],
    pub ph1_rblack: *mut [c_short; 2],
    pub iparams: libraw_iparams_t,
    pub sizes: libraw_image_sizes_t,
    pub ioparams: libraw_internal_output_params_t,
    pub color: libraw_colordata_t,
}

Fields

raw_alloc: *mut c_voidraw_image: *mut ushortcolor4_image: *mut [ushort; 4]color3_image: *mut [ushort; 3]float_image: *mut f32float3_image: *mut [f32; 3]float4_image: *mut [f32; 4]ph1_cblack: *mut [c_short; 2]ph1_rblack: *mut [c_short; 2]iparams: libraw_iparams_tsizes: libraw_image_sizes_tioparams: libraw_internal_output_params_tcolor: libraw_colordata_t

Trait Implementations

impl Clone for libraw_rawdata_t[src]

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