[][src]Struct adafruit_gps::nmea::gsv::Satellites

pub struct Satellites {
    pub id: Option<i32>,
    pub elevation: Option<f32>,
    pub azimuth: Option<f32>,
    pub snr: Option<f32>,
}

This is the individual satellite data given by the GSV sentence. It is used in the main GpsData struct, as a Vec.

Fields

id: Option<i32>elevation: Option<f32>azimuth: Option<f32>snr: Option<f32>

Trait Implementations

impl Debug for Satellites[src]

impl Default for Satellites[src]

impl PartialEq<Satellites> for Satellites[src]

impl StructuralPartialEq for Satellites[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.