[][src]Struct gpsd_proto::Gst

pub struct Gst {
    pub device: Option<String>,
    pub time: Option<String>,
    pub rms: Option<f32>,
    pub major: Option<f32>,
    pub minor: Option<f32>,
    pub orient: Option<f32>,
    pub lat: Option<f32>,
    pub lon: Option<f32>,
    pub alt: Option<f32>,
}

Pseudorange noise report.

Fields

device: Option<String>

Name of originating device.

time: Option<String>

Time/date stamp in ISO8601 format, UTC. May have a fractional part of up to .001 sec precision.

rms: Option<f32>

Value of the standard deviation of the range inputs to the navigation process (range inputs include pseudoranges and DGPS corrections).

major: Option<f32>

Standard deviation of semi-major axis of error ellipse, in meters.

minor: Option<f32>

Standard deviation of semi-minor axis of error ellipse, in meters.

orient: Option<f32>

Orientation of semi-major axis of error ellipse, in degrees from true north.

lat: Option<f32>

Standard deviation of latitude error, in meters.

lon: Option<f32>

Standard deviation of longitude error, in meters.

alt: Option<f32>

Standard deviation of altitude error, in meters.

Trait Implementations

impl Debug for Gst[src]

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

Auto Trait Implementations

impl RefUnwindSafe for Gst

impl Send for Gst

impl Sync for Gst

impl Unpin for Gst

impl UnwindSafe for Gst

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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.