Struct libraw_sys::libraw_image_sizes_t[][src]

#[repr(C)]pub struct libraw_image_sizes_t {
    pub raw_height: ushort,
    pub raw_width: ushort,
    pub height: ushort,
    pub width: ushort,
    pub top_margin: ushort,
    pub left_margin: ushort,
    pub iheight: ushort,
    pub iwidth: ushort,
    pub raw_pitch: c_uint,
    pub pixel_aspect: f64,
    pub flip: c_int,
    pub mask: [[c_int; 4]; 8],
    pub raw_inset_crop: libraw_raw_inset_crop_t,
}

Fields

raw_height: ushortraw_width: ushortheight: ushortwidth: ushorttop_margin: ushortleft_margin: ushortiheight: ushortiwidth: ushortraw_pitch: c_uintpixel_aspect: f64flip: c_intmask: [[c_int; 4]; 8]raw_inset_crop: libraw_raw_inset_crop_t

Trait Implementations

impl Clone for libraw_image_sizes_t[src]

impl Copy for libraw_image_sizes_t[src]

impl Debug for libraw_image_sizes_t[src]

impl PartialEq<libraw_image_sizes_t> for libraw_image_sizes_t[src]

impl StructuralPartialEq for libraw_image_sizes_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.