pub struct GeoLongTermCorrEntry {
pub velocity_code: u8,
pub prn_mask_no: u8,
pub iodp: u8,
pub iode: u8,
pub t_oe: u32,
/* private fields */
}Expand description
One long-term correction entry in GeoLongTermCorrBlock.
Fields§
§velocity_code: u8Velocity code present flag
prn_mask_no: u8PRN mask number
iodp: u8Issue of Data PRN mask
iode: u8Issue of Data Ephemeris
t_oe: u32Reference time (seconds)
Implementations§
Source§impl GeoLongTermCorrEntry
impl GeoLongTermCorrEntry
pub fn dx_m(&self) -> Option<f32>
pub fn dy_m(&self) -> Option<f32>
pub fn dz_m(&self) -> Option<f32>
pub fn dx_rate_mps(&self) -> Option<f32>
pub fn dy_rate_mps(&self) -> Option<f32>
pub fn dz_rate_mps(&self) -> Option<f32>
pub fn da_f0_s(&self) -> Option<f32>
pub fn da_f1_sps(&self) -> Option<f32>
Trait Implementations§
Source§impl Clone for GeoLongTermCorrEntry
impl Clone for GeoLongTermCorrEntry
Source§fn clone(&self) -> GeoLongTermCorrEntry
fn clone(&self) -> GeoLongTermCorrEntry
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 moreAuto Trait Implementations§
impl Freeze for GeoLongTermCorrEntry
impl RefUnwindSafe for GeoLongTermCorrEntry
impl Send for GeoLongTermCorrEntry
impl Sync for GeoLongTermCorrEntry
impl Unpin for GeoLongTermCorrEntry
impl UnsafeUnpin for GeoLongTermCorrEntry
impl UnwindSafe for GeoLongTermCorrEntry
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