Struct libraw_sys::libraw_gps_info_t[][src]

#[repr(C)]pub struct libraw_gps_info_t {
    pub latitude: [f32; 3],
    pub longitude: [f32; 3],
    pub gpstimestamp: [f32; 3],
    pub altitude: f32,
    pub altref: c_char,
    pub latref: c_char,
    pub longref: c_char,
    pub gpsstatus: c_char,
    pub gpsparsed: c_char,
}

Fields

latitude: [f32; 3]longitude: [f32; 3]gpstimestamp: [f32; 3]altitude: f32altref: c_charlatref: c_charlongref: c_chargpsstatus: c_chargpsparsed: c_char

Trait Implementations

impl Clone for libraw_gps_info_t[src]

impl Copy for libraw_gps_info_t[src]

impl Debug for libraw_gps_info_t[src]

impl PartialEq<libraw_gps_info_t> for libraw_gps_info_t[src]

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