[][src]Struct nmea_0183::messages::VLWMessage

pub struct VLWMessage {
    pub twd: Option<f64>,
    pub twd_unit: Option<WaterDistanceUnit>,
    pub wd: Option<f64>,
    pub wd_unit: Option<WaterDistanceUnit>,
    pub tgd: Option<f64>,
    pub tgd_unit: Option<WaterDistanceUnit>,
    pub gd: Option<f64>,
    pub gd_unit: Option<WaterDistanceUnit>,
}

Dual ground/water distance

Fields

twd: Option<f64>

Total cumulative water distance:

twd_unit: Option<WaterDistanceUnit>

Total cumulative water distance units

wd: Option<f64>

Water distance since reset

wd_unit: Option<WaterDistanceUnit>

Water distance since reset units

tgd: Option<f64>

Total cumulative ground distance

tgd_unit: Option<WaterDistanceUnit>

Total cumulative ground distance units

gd: Option<f64>

Ground distance since reset

gd_unit: Option<WaterDistanceUnit>

Ground distance since reset units

Trait Implementations

impl PartialEq<VLWMessage> for VLWMessage[src]

impl Debug for VLWMessage[src]

Auto Trait Implementations

Blanket Implementations

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.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]