pub struct GeoFastCorrBlock {
pub prn: u8,
pub mt: u8,
pub iodp: u8,
pub iodf: u8,
pub n: u8,
pub sb_length: u8,
pub corrections: Vec<GeoFastCorrEntry>,
/* private fields */
}Expand description
GEOFastCorr block (Block ID 5927)
SBAS MT02-05/24 fast corrections.
Fields§
§prn: u8SBAS PRN
mt: u8Message type
iodp: u8Issue of Data PRN mask
iodf: u8Issue of Data Fast
n: u8Number of corrections
sb_length: u8Sub-block length
corrections: Vec<GeoFastCorrEntry>Fast correction entries
Implementations§
Trait Implementations§
Source§impl Clone for GeoFastCorrBlock
impl Clone for GeoFastCorrBlock
Source§fn clone(&self) -> GeoFastCorrBlock
fn clone(&self) -> GeoFastCorrBlock
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 GeoFastCorrBlock
impl Debug for GeoFastCorrBlock
Auto Trait Implementations§
impl Freeze for GeoFastCorrBlock
impl RefUnwindSafe for GeoFastCorrBlock
impl Send for GeoFastCorrBlock
impl Sync for GeoFastCorrBlock
impl Unpin for GeoFastCorrBlock
impl UnsafeUnpin for GeoFastCorrBlock
impl UnwindSafe for GeoFastCorrBlock
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