Struct NavVelNedRef

Source
pub struct NavVelNedRef<'a>(/* private fields */);
Expand description

Velocity Solution in NED Contains a reference to an underlying buffer, contains accessor methods to retrieve data.

Implementations§

Source§

impl<'a> NavVelNedRef<'a>

Source

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

Source

pub fn itow(&self) -> u32

GPS Millisecond Time of Week

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 speed_3d_raw(&self) -> u32

Speed 3-D [m/s]

Source

pub fn speed_3d(&self) -> f64

Speed 3-D [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 [deg]

Source

pub fn heading_degrees(&self) -> f64

Heading of motion 2-D [deg]

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 course_heading_accuracy_estimate_raw(&self) -> u32

Course / Heading Accuracy Estimate [deg]

Source

pub fn course_heading_accuracy_estimate(&self) -> f64

Course / Heading Accuracy Estimate [deg]

Trait Implementations§

Source§

impl Debug for NavVelNedRef<'_>

Source§

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

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

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

Source§

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

Converts to this type from the input type.
Source§

impl Serialize for NavVelNedRef<'_>

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

Auto Trait Implementations§

§

impl<'a> Freeze for NavVelNedRef<'a>

§

impl<'a> RefUnwindSafe for NavVelNedRef<'a>

§

impl<'a> Send for NavVelNedRef<'a>

§

impl<'a> Sync for NavVelNedRef<'a>

§

impl<'a> Unpin for NavVelNedRef<'a>

§

impl<'a> UnwindSafe for NavVelNedRef<'a>

Blanket Implementations§

Source§

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

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

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

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where 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 T
where 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 T
where U: Into<T>,

Source§

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 T
where U: TryFrom<T>,

Source§

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.