Struct nrfxlib_sys::nrf_gnss_sv_t[][src]

#[repr(C)]pub struct nrf_gnss_sv_t {
    pub sv: u16,
    pub signal: u8,
    pub cn0: u16,
    pub elevation: i16,
    pub azimuth: i16,
    pub flags: u8,
}

Fields

sv: u16

< SV number 1...32 for GPS.

signal: u8

< Signal type. 0: invalid, 1: GPS L1C/A, other values are reserved for other GNSSes or signals.

cn0: u16

< 0.1 dB/Hz.

elevation: i16

< SV elevation angle in degrees.

azimuth: i16

< SV azimuth angle in degrees.

flags: u8

< Bit mask of measurement and position computation flags.

Trait Implementations

impl Clone for nrf_gnss_sv_t[src]

impl Copy for nrf_gnss_sv_t[src]

impl Debug for nrf_gnss_sv_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.