[][src]Struct gpsd_proto::Satellite

pub struct Satellite {
    pub prn: i16,
    pub el: i16,
    pub az: i16,
    pub ss: i16,
    pub used: bool,
}

Detailed satellite information.

Fields

prn: i16

PRN ID of the satellite. 1-63 are GNSS satellites, 64-96 are GLONASS satellites, 100-164 are SBAS satellites.

el: i16

Elevation in degrees.

az: i16

Azimuth, degrees from true north.

ss: i16

Signal strength in dB.

used: bool

Used in current solution? (SBAS/WAAS/EGNOS satellites may be flagged used if the solution has corrections from them, but not all drivers make this information available.).

Trait Implementations

impl Debug for Satellite[src]

impl<'de> Deserialize<'de> for Satellite[src]

Auto Trait Implementations

Blanket Implementations

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.

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

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

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

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]