Struct gpsd_proto::Gst

source ·
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>,
}
Expand description

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§

source§

impl Clone for Gst

source§

fn clone(&self) -> Gst

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Gst

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'de> Deserialize<'de> for Gst

source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more

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§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> DeserializeOwned for Twhere T: for<'de> Deserialize<'de>,