pub struct GeoRawL1Block {
pub svid: u8,
pub crc_passed: u8,
pub viterbi_count: u8,
pub source: u8,
pub freq_nr: u8,
pub nav_bits: [u8; 32],
/* private fields */
}Expand description
GEORawL1 block (Block ID 4020)
Raw SBAS L1 navigation bits.
Fields§
§svid: u8SBAS PRN (120-158)
crc_passed: u8CRC check: 0=failed, 1=passed
viterbi_count: u8Viterbi decoder error count
source: u8Signal source
freq_nr: u8Frequency number
Raw navigation bits (8 × u4 = 32 bytes, 256 bits)
Implementations§
Trait Implementations§
Source§impl Clone for GeoRawL1Block
impl Clone for GeoRawL1Block
Source§fn clone(&self) -> GeoRawL1Block
fn clone(&self) -> GeoRawL1Block
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 GeoRawL1Block
impl Debug for GeoRawL1Block
Auto Trait Implementations§
impl Freeze for GeoRawL1Block
impl RefUnwindSafe for GeoRawL1Block
impl Send for GeoRawL1Block
impl Sync for GeoRawL1Block
impl Unpin for GeoRawL1Block
impl UnsafeUnpin for GeoRawL1Block
impl UnwindSafe for GeoRawL1Block
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