Struct libraw_sys::tiff_hdr[][src]

#[repr(C)]pub struct tiff_hdr {
    pub t_order: ushort,
    pub magic: ushort,
    pub ifd: c_int,
    pub pad: ushort,
    pub ntag: ushort,
    pub tag: [libraw_tiff_tag; 23],
    pub nextifd: c_int,
    pub pad2: ushort,
    pub nexif: ushort,
    pub exif: [libraw_tiff_tag; 4],
    pub pad3: ushort,
    pub ngps: ushort,
    pub gpst: [libraw_tiff_tag; 10],
    pub bps: [c_short; 4],
    pub rat: [c_int; 10],
    pub gps: [c_uint; 26],
    pub t_desc: [c_char; 512],
    pub t_make: [c_char; 64],
    pub t_model: [c_char; 64],
    pub soft: [c_char; 32],
    pub date: [c_char; 20],
    pub t_artist: [c_char; 64],
}

Fields

t_order: ushortmagic: ushortifd: c_intpad: ushortntag: ushorttag: [libraw_tiff_tag; 23]nextifd: c_intpad2: ushortnexif: ushortexif: [libraw_tiff_tag; 4]pad3: ushortngps: ushortgpst: [libraw_tiff_tag; 10]bps: [c_short; 4]rat: [c_int; 10]gps: [c_uint; 26]t_desc: [c_char; 512]t_make: [c_char; 64]t_model: [c_char; 64]soft: [c_char; 32]date: [c_char; 20]t_artist: [c_char; 64]

Trait Implementations

impl Clone for tiff_hdr[src]

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