[][src]Struct adafruit_gps::nmea::rmc::RmcData

pub struct RmcData {
    pub utc: f64,
    pub fix_status: bool,
    pub latitude: Option<f32>,
    pub longitude: Option<f32>,
    pub speed: Option<f32>,
    pub course: Option<f32>,
    pub date: String,
    pub mag_var: Option<f32>,
}

Fields

utc: f64fix_status: boollatitude: Option<f32>longitude: Option<f32>speed: Option<f32>course: Option<f32>date: Stringmag_var: Option<f32>

Trait Implementations

impl PartialEq<RmcData> for RmcData[src]

impl StructuralPartialEq for RmcData[src]

Auto Trait Implementations

impl RefUnwindSafe for RmcData

impl Send for RmcData

impl Sync for RmcData

impl Unpin for RmcData

impl UnwindSafe for RmcData

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.