pub struct GpsUtcBlock {
pub prn: u8,
pub a_1: f32,
pub a_0: f64,
pub t_ot: u32,
pub wn_t: u8,
pub delta_t_ls: i8,
pub wn_lsf: u8,
pub dn: u8,
pub delta_t_lsf: i8,
/* private fields */
}Expand description
GPSUtc block (Block ID 5894)
GPS to UTC conversion parameters.
Fields§
§prn: u8PRN number (1-32)
a_1: f32UTC drift (s/s)
a_0: f64UTC bias (s)
t_ot: u32Reference time (s)
wn_t: u8Reference week
delta_t_ls: i8Current leap seconds
wn_lsf: u8Week of future leap second
dn: u8Day of future leap second
delta_t_lsf: i8Future leap seconds
Implementations§
Source§impl GpsUtcBlock
impl GpsUtcBlock
Trait Implementations§
Source§impl Clone for GpsUtcBlock
impl Clone for GpsUtcBlock
Source§fn clone(&self) -> GpsUtcBlock
fn clone(&self) -> GpsUtcBlock
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 GpsUtcBlock
impl Debug for GpsUtcBlock
Auto Trait Implementations§
impl Freeze for GpsUtcBlock
impl RefUnwindSafe for GpsUtcBlock
impl Send for GpsUtcBlock
impl Sync for GpsUtcBlock
impl Unpin for GpsUtcBlock
impl UnsafeUnpin for GpsUtcBlock
impl UnwindSafe for GpsUtcBlock
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