Struct ublox::NavPvtRef

source ·
pub struct NavPvtRef<'a>(/* private fields */);
Expand description

Navigation Position Velocity Time Solution Contains a reference to an underlying buffer, contains accessor methods to retrieve data.

Implementations§

source§

impl<'a> NavPvtRef<'a>

source

pub fn as_bytes(&self) -> &[u8]

source

pub fn itow(&self) -> u32

GPS Millisecond Time of Week

source

pub fn year(&self) -> u16

source

pub fn month(&self) -> u8

source

pub fn day(&self) -> u8

source

pub fn hour(&self) -> u8

source

pub fn min(&self) -> u8

source

pub fn sec(&self) -> u8

source

pub fn valid(&self) -> u8

source

pub fn time_accuracy(&self) -> u32

source

pub fn nanosecond(&self) -> i32

source

pub fn fix_type_raw(&self) -> u8

GNSS fix Type

source

pub fn fix_type(&self) -> GpsFix

GNSS fix Type

source

pub fn flags_raw(&self) -> u8

source

pub fn flags(&self) -> NavPvtFlags

source

pub fn flags2_raw(&self) -> u8

source

pub fn flags2(&self) -> NavPvtFlags2

source

pub fn num_satellites(&self) -> u8

source

pub fn lon_degrees_raw(&self) -> i32

source

pub fn lon_degrees(&self) -> f64

source

pub fn lat_degrees_raw(&self) -> i32

source

pub fn lat_degrees(&self) -> f64

source

pub fn height_meters_raw(&self) -> i32

Height above Ellipsoid

source

pub fn height_meters(&self) -> f64

Height above Ellipsoid

source

pub fn height_msl_raw(&self) -> i32

Height above mean sea level

source

pub fn height_msl(&self) -> f64

Height above mean sea level

source

pub fn horiz_accuracy(&self) -> u32

source

pub fn vert_accuracy(&self) -> u32

source

pub fn vel_north_raw(&self) -> i32

north velocity (m/s)

source

pub fn vel_north(&self) -> f64

north velocity (m/s)

source

pub fn vel_east_raw(&self) -> i32

east velocity (m/s)

source

pub fn vel_east(&self) -> f64

east velocity (m/s)

source

pub fn vel_down_raw(&self) -> i32

down velocity (m/s)

source

pub fn vel_down(&self) -> f64

down velocity (m/s)

source

pub fn ground_speed_raw(&self) -> u32

Ground speed (m/s)

source

pub fn ground_speed(&self) -> f64

Ground speed (m/s)

source

pub fn heading_degrees_raw(&self) -> i32

Heading of motion 2-D (degrees)

source

pub fn heading_degrees(&self) -> f64

Heading of motion 2-D (degrees)

source

pub fn speed_accuracy_estimate_raw(&self) -> u32

Speed Accuracy Estimate (m/s)

source

pub fn speed_accuracy_estimate(&self) -> f64

Speed Accuracy Estimate (m/s)

source

pub fn heading_accuracy_estimate_raw(&self) -> u32

Heading accuracy estimate (both motionand vehicle) (degrees)

source

pub fn heading_accuracy_estimate(&self) -> f64

Heading accuracy estimate (both motionand vehicle) (degrees)

source

pub fn pdop(&self) -> u16

Position DOP

source

pub fn reserved1(&self) -> [u8; 6]

source

pub fn heading_of_vehicle_degrees_raw(&self) -> i32

source

pub fn heading_of_vehicle_degrees(&self) -> f64

source

pub fn magnetic_declination_degrees_raw(&self) -> i16

source

pub fn magnetic_declination_degrees(&self) -> f64

source

pub fn magnetic_declination_accuracy_degrees_raw(&self) -> u16

source

pub fn magnetic_declination_accuracy_degrees(&self) -> f64

Trait Implementations§

source§

impl Debug for NavPvtRef<'_>

source§

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

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

impl<'a> From<&NavPvtRef<'a>> for Position

source§

fn from(packet: &NavPvtRef<'a>) -> Self

Converts to this type from the input type.
source§

impl<'a> From<&NavPvtRef<'a>> for Velocity

source§

fn from(packet: &NavPvtRef<'a>) -> Self

Converts to this type from the input type.
source§

impl Serialize for NavPvtRef<'_>

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl<'a> TryFrom<&NavPvtRef<'a>> for DateTime<Utc>

§

type Error = DateTimeError

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

fn try_from(sol: &NavPvtRef<'a>) -> Result<Self, Self::Error>

Performs the conversion.

Auto Trait Implementations§

§

impl<'a> RefUnwindSafe for NavPvtRef<'a>

§

impl<'a> Send for NavPvtRef<'a>

§

impl<'a> Sync for NavPvtRef<'a>

§

impl<'a> Unpin for NavPvtRef<'a>

§

impl<'a> UnwindSafe for NavPvtRef<'a>

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, 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.