pub struct NavStatusRef<'a>(/* private fields */);
Expand description
Receiver Navigation Status Contains a reference to an underlying buffer, contains accessor methods to retrieve data.
Implementations§
pub fn as_bytes(&self) -> &[u8] ⓘ
Sourcepub fn fix_type_raw(&self) -> u8
pub fn fix_type_raw(&self) -> u8
GPS fix Type, this value does not qualify a fix as valid and within the limits
Sourcepub fn fix_type(&self) -> GpsFix
pub fn fix_type(&self) -> GpsFix
GPS fix Type, this value does not qualify a fix as valid and within the limits
Sourcepub fn flags(&self) -> NavStatusFlags
pub fn flags(&self) -> NavStatusFlags
Navigation Status Flags
Sourcepub fn fix_stat_raw(&self) -> u8
pub fn fix_stat_raw(&self) -> u8
Fix Status Information
Sourcepub fn fix_stat(&self) -> FixStatusInfo
pub fn fix_stat(&self) -> FixStatusInfo
Fix Status Information
Sourcepub fn flags2_raw(&self) -> u8
pub fn flags2_raw(&self) -> u8
further information about navigation output
Sourcepub fn flags2(&self) -> NavStatusFlags2
pub fn flags2(&self) -> NavStatusFlags2
further information about navigation output
Sourcepub fn time_to_first_fix(&self) -> u32
pub fn time_to_first_fix(&self) -> u32
Time to first fix (millisecond time tag)
Trait Implementations§
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