pub struct GalAuthStatusBlock {
pub osnma_status: u16,
pub trusted_time_delta: f32,
pub gal_active_mask: u64,
pub gal_authentic_mask: u64,
pub gps_active_mask: u64,
pub gps_authentic_mask: u64,
/* private fields */
}Expand description
GALAuthStatus (4245) — Galileo OSNMA authentication status.
Fields§
§osnma_status: u16OSNMA status bitfield (see Septentrio SBF reference: Status, progress, time source, …).
trusted_time_delta: f32Trusted time delta (seconds).
gal_active_mask: u64Galileo active authentication mask (64 bit).
gal_authentic_mask: u64Galileo authentic mask (64 bit).
gps_active_mask: u64GPS active authentication mask (64 bit).
gps_authentic_mask: u64GPS authentic mask (64 bit).
Implementations§
Trait Implementations§
Source§impl Clone for GalAuthStatusBlock
impl Clone for GalAuthStatusBlock
Source§fn clone(&self) -> GalAuthStatusBlock
fn clone(&self) -> GalAuthStatusBlock
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for GalAuthStatusBlock
impl Debug for GalAuthStatusBlock
Auto Trait Implementations§
impl Freeze for GalAuthStatusBlock
impl RefUnwindSafe for GalAuthStatusBlock
impl Send for GalAuthStatusBlock
impl Sync for GalAuthStatusBlock
impl Unpin for GalAuthStatusBlock
impl UnsafeUnpin for GalAuthStatusBlock
impl UnwindSafe for GalAuthStatusBlock
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