pub struct GpsQzssFrame2 {
pub toe: u32,
pub iode: u8,
pub m0: f64,
pub dn: f64,
pub cuc: f64,
pub cus: f64,
pub crs: f64,
pub e: f64,
pub sqrt_a: f64,
pub fit_int_flag: bool,
pub aodo: u8,
}Available on crate feature
gps only.Expand description
GPS / QZSS Frame #2 interpretation
Fields§
§toe: u32Time of issue of ephemeris (in seconds of week)
iode: u8IODE: Issue of Data (Ephemeris)
m0: f64Mean anomaly at reference time (in semi circles)
dn: f64Mean motion difference from computed value (in semi circles)
cuc: f64Latitude cosine harmonic correction term
cus: f64Latitude sine harmonic correction term
crs: f64Orbit radius sine harmonic correction term
e: f64Eccentricity
sqrt_a: f64Sqrt(a)
fit_int_flag: boolFit interval flag
aodo: u85-bit AODO
Trait Implementations§
Source§impl Clone for GpsQzssFrame2
impl Clone for GpsQzssFrame2
Source§fn clone(&self) -> GpsQzssFrame2
fn clone(&self) -> GpsQzssFrame2
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for GpsQzssFrame2
Source§impl Debug for GpsQzssFrame2
impl Debug for GpsQzssFrame2
Source§impl Default for GpsQzssFrame2
impl Default for GpsQzssFrame2
Source§fn default() -> GpsQzssFrame2
fn default() -> GpsQzssFrame2
Returns the “default value” for a type. Read more
Source§impl PartialEq for GpsQzssFrame2
impl PartialEq for GpsQzssFrame2
Source§fn eq(&self, other: &GpsQzssFrame2) -> bool
fn eq(&self, other: &GpsQzssFrame2) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GpsQzssFrame2
Auto Trait Implementations§
impl Freeze for GpsQzssFrame2
impl RefUnwindSafe for GpsQzssFrame2
impl Send for GpsQzssFrame2
impl Sync for GpsQzssFrame2
impl Unpin for GpsQzssFrame2
impl UnsafeUnpin for GpsQzssFrame2
impl UnwindSafe for GpsQzssFrame2
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