pub struct GloTimeBlock {
pub svid: u8,
pub freq_nr: i8,
pub n_4: u8,
pub kp: u8,
pub n: u16,
pub tau_gps: f32,
pub tau_c: f64,
pub b1: f32,
pub b2: f32,
/* private fields */
}Expand description
GLOTime block (Block ID 4036)
GLONASS time parameters.
Fields§
§svid: u8SVID (38-61 for GLONASS)
freq_nr: i8Frequency number (-7 to +6)
n_4: u84-year interval number
kp: u8Notification of leap second
n: u16Day number
tau_gps: f32GPS-GLONASS time offset (s)
tau_c: f64GLONASS time scale correction (s)
b1: f32UT1-UTC coefficient
b2: f32UT1-UTC rate
Implementations§
Trait Implementations§
Source§impl Clone for GloTimeBlock
impl Clone for GloTimeBlock
Source§fn clone(&self) -> GloTimeBlock
fn clone(&self) -> GloTimeBlock
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 GloTimeBlock
impl Debug for GloTimeBlock
Auto Trait Implementations§
impl Freeze for GloTimeBlock
impl RefUnwindSafe for GloTimeBlock
impl Send for GloTimeBlock
impl Sync for GloTimeBlock
impl Unpin for GloTimeBlock
impl UnsafeUnpin for GloTimeBlock
impl UnwindSafe for GloTimeBlock
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