Struct nrfxlib_sys::nrf_gnss_pvt_data_frame_t[][src]

#[repr(C)]pub struct nrf_gnss_pvt_data_frame_t {
    pub latitude: f64,
    pub longitude: f64,
    pub altitude: f32,
    pub accuracy: f32,
    pub speed: f32,
    pub heading: f32,
    pub datetime: nrf_gnss_datetime_t,
    pub pdop: f32,
    pub hdop: f32,
    pub vdop: f32,
    pub tdop: f32,
    pub flags: u8,
    pub sv: [nrf_gnss_sv_t; 12],
}

Fields

latitude: f64

< Latitude in degrees.

longitude: f64

< Longitude in degrees.

altitude: f32

< Altitude above WGS-84 ellipsoid in meters.

accuracy: f32

< Accuracy (2D 1-sigma) in meters.

speed: f32

< Horizontal speed in meters.

heading: f32

< Heading of user movement in degrees.

datetime: nrf_gnss_datetime_tpdop: f32

< Position dilution of precision.

hdop: f32

< Horizontal dilution of precision.

vdop: f32

< Vertical dilution of precision.

tdop: f32

< Time dilution of precision.

flags: u8

< Bit 0 (LSB): fix validity. Bit 1: Leap second validity. Bit 2: If set, the GNSS operation is blocked, for example, by LTE.

sv: [nrf_gnss_sv_t; 12]

< Describes up to 12 of the space vehicles used for the measurement.

Trait Implementations

impl Clone for nrf_gnss_pvt_data_frame_t[src]

impl Copy for nrf_gnss_pvt_data_frame_t[src]

impl Debug for nrf_gnss_pvt_data_frame_t[src]

Auto Trait Implementations

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.