[][src]Struct ublox::NavPosVelTimeRef

pub struct NavPosVelTimeRef<'a>(_);

Navigation Position Velocity Time Solution Contains a reference to an underlying buffer, contains accessor methods to retrieve data.

Implementations

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

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

GPS Millisecond Time of Week

pub fn year(&self) -> u16[src]

pub fn month(&self) -> u8[src]

pub fn day(&self) -> u8[src]

pub fn hour(&self) -> u8[src]

pub fn min(&self) -> u8[src]

pub fn sec(&self) -> u8[src]

pub fn valid(&self) -> u8[src]

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

pub fn nanosecond(&self) -> i32[src]

pub fn fix_type(&self) -> GpsFix[src]

GNSS fix Type

pub fn flags(&self) -> NavPosVelTimeFlags[src]

pub fn flags2(&self) -> NavPosVelTimeFlags2[src]

pub fn num_satellites(&self) -> u8[src]

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

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

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

Height above Ellipsoid

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

Height above mean sea level

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

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

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 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 heading_accuracy_estimate(&self) -> f64[src]

Heading accuracy estimate (both motionand vehicle) (degrees)

pub fn pdop(&self) -> u16[src]

Position DOP

pub fn reserved1(&self) -> [u8; 6][src]

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

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

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

Trait Implementations

impl<'a, '_> From<&'_ NavPosVelTimeRef<'a>> for Position[src]

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

impl<'a, '_> TryFrom<&'_ NavPosVelTimeRef<'a>> for DateTime<Utc>[src]

type Error = DateTimeError

The type returned in the event of a conversion error.

Auto Trait Implementations

impl<'a> RefUnwindSafe for NavPosVelTimeRef<'a>

impl<'a> Send for NavPosVelTimeRef<'a>

impl<'a> Sync for NavPosVelTimeRef<'a>

impl<'a> Unpin for NavPosVelTimeRef<'a>

impl<'a> UnwindSafe for NavPosVelTimeRef<'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.