[][src]Struct nmea0183::VTG

pub struct VTG {
    pub source: Source,
    pub course: Option<Course>,
    pub magnetic: Option<MagneticCourse>,
    pub speed: Speed,
    pub mode: Mode,
}

The actual course and speed relative to the ground.

Fields

source: Source

Navigational system.

course: Option<Course>

Course over ground. Some receivers do not reports it when no movement.

magnetic: Option<MagneticCourse>

Magnetic course over ground (angle to magnetic North pole).

speed: Speed

Speed over ground.

mode: Mode

Receiver's mode of operation.

Trait Implementations

impl PartialEq<VTG> for VTG[src]

impl Debug for VTG[src]

Auto Trait Implementations

impl Unpin for VTG

impl Send for VTG

impl Sync for VTG

Blanket Implementations

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> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

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> Borrow<T> for T where
    T: ?Sized
[src]

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

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