[][src]Struct ublox::NavVelNedRef

pub struct NavVelNedRef<'a>(_);

Velocity Solution in NED Contains a reference to an underlying buffer, contains accessor methods to retrieve data.

Implementations

impl<'a> NavVelNedRef<'a>[src]

pub fn itow(&self) -> u32[src]

GPS Millisecond Time of Week

pub fn vel_north(&self) -> f64[src]

north velocity (m/s)

pub fn vel_east(&self) -> f64[src]

east velocity (m/s)

pub fn vel_down(&self) -> f64[src]

down velocity (m/s)

pub fn speed_3d(&self) -> f64[src]

Speed 3-D (m/s)

pub fn ground_speed(&self) -> f64[src]

Ground speed (m/s)

pub fn heading_degrees(&self) -> f64[src]

Heading of motion 2-D (degrees)

pub fn speed_accuracy_estimate(&self) -> f64[src]

Speed Accuracy Estimate (m/s)

pub fn course_heading_accuracy_estimate(&self) -> f64[src]

Course / Heading Accuracy Estimate (degrees)

Trait Implementations

impl<'a, '_> From<&'_ NavVelNedRef<'a>> for Velocity[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for NavVelNedRef<'a>

impl<'a> Send for NavVelNedRef<'a>

impl<'a> Sync for NavVelNedRef<'a>

impl<'a> Unpin for NavVelNedRef<'a>

impl<'a> UnwindSafe for NavVelNedRef<'a>

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.