pub struct GloRawCaBlock {
pub svid: u8,
pub crc_passed: u8,
pub viterbi_count: u8,
pub source: u8,
pub freq_nr: u8,
pub nav_bits: [u8; 12],
/* private fields */
}Expand description
GLORawCA block (Block ID 4026)
Raw GLONASS CA navigation string bits.
Fields§
§svid: u8GLONASS slot (38-61)
crc_passed: u8CRC check: 0=failed, 1=passed
viterbi_count: u8Viterbi decoder error count
source: u8Signal source
freq_nr: u8Frequency number (-7 to +6)
Raw navigation bits (3 × u4 = 12 bytes, 96 bits)
Implementations§
Trait Implementations§
Source§impl Clone for GloRawCaBlock
impl Clone for GloRawCaBlock
Source§fn clone(&self) -> GloRawCaBlock
fn clone(&self) -> GloRawCaBlock
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 GloRawCaBlock
impl Debug for GloRawCaBlock
Auto Trait Implementations§
impl Freeze for GloRawCaBlock
impl RefUnwindSafe for GloRawCaBlock
impl Send for GloRawCaBlock
impl Sync for GloRawCaBlock
impl Unpin for GloRawCaBlock
impl UnsafeUnpin for GloRawCaBlock
impl UnwindSafe for GloRawCaBlock
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