pub struct NavClockRef<'a>(/* private fields */);Expand description
Navigation clock solution, current receiver clock bias and drift estimates Contains a reference to an underlying buffer, contains accessor methods to retrieve data.
Implementations§
pub fn as_bytes(&self) -> &[u8] ⓘ
pub fn payload_len(&self) -> usize
pub fn to_owned(&self) -> NavClockOwned
Sourcepub fn clk_bias_raw(&self) -> i32
pub fn clk_bias_raw(&self) -> i32
Receiver clock bias (offset) in s
Sourcepub fn clk_drift_raw(&self) -> i32
pub fn clk_drift_raw(&self) -> i32
Clock drift (offset variations) [s/s]
Sourcepub fn time_acc_raw(&self) -> u32
pub fn time_acc_raw(&self) -> u32
time accuracy estimate
Sourcepub fn freq_acc_raw(&self) -> u32
pub fn freq_acc_raw(&self) -> u32
frequency accuracy estimate [s/s]
Trait Implementations§
Source§fn from(packet: &NavClockRef<'a>) -> Self
fn from(packet: &NavClockRef<'a>) -> Self
Converts to this type from the input type.
Source§fn from(packet: NavClockRef<'a>) -> Self
fn from(packet: NavClockRef<'a>) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more