pub struct GeoIonoDelayIdc {
pub igp_mask_no: u8,
pub givei: u8,
/* private fields */
}Expand description
One ionospheric delay correction entry in GEOIonoDelay.
Fields§
§igp_mask_no: u8Sequence number in the IGP mask (1..201)
givei: u8Grid Ionospheric Vertical Error Indicator (0..15)
Implementations§
Source§impl GeoIonoDelayIdc
impl GeoIonoDelayIdc
Sourcepub fn vertical_delay_m(&self) -> Option<f32>
pub fn vertical_delay_m(&self) -> Option<f32>
Vertical delay estimate in meters.
Returns None when the receiver marks the value as do-not-use.
Sourcepub fn vertical_delay_m_raw(&self) -> f32
pub fn vertical_delay_m_raw(&self) -> f32
Raw vertical delay value from the block payload.
Trait Implementations§
Source§impl Clone for GeoIonoDelayIdc
impl Clone for GeoIonoDelayIdc
Source§fn clone(&self) -> GeoIonoDelayIdc
fn clone(&self) -> GeoIonoDelayIdc
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 GeoIonoDelayIdc
impl RefUnwindSafe for GeoIonoDelayIdc
impl Send for GeoIonoDelayIdc
impl Sync for GeoIonoDelayIdc
impl Unpin for GeoIonoDelayIdc
impl UnsafeUnpin for GeoIonoDelayIdc
impl UnwindSafe for GeoIonoDelayIdc
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