#[repr(C)]pub struct gnss_solution {Show 15 fields
pub pos_llh: [f64; 3],
pub pos_ecef: [f64; 3],
pub vel_ned: [f64; 3],
pub vel_ecef: [f64; 3],
pub err_cov: [f64; 7],
pub vel_cov: [f64; 7],
pub clock_offset: f64,
pub clock_offset_var: f64,
pub clock_drift: f64,
pub clock_drift_var: f64,
pub time: gps_time_t,
pub valid: u8_,
pub velocity_valid: u8_,
pub n_sats_used: u8_,
pub n_sigs_used: u8_,
}
Fields§
§pos_llh: [f64; 3]
Receiver position latitude [deg], longitude [deg], altitude [m]
pos_ecef: [f64; 3]
Receiver position ECEF XYZ [m]
vel_ned: [f64; 3]
Receiver velocity in NED [m/s]
vel_ecef: [f64; 3]
Receiver velocity in ECEF XYZ [m/s]
err_cov: [f64; 7]
§vel_cov: [f64; 7]
§clock_offset: f64
§clock_offset_var: f64
§clock_drift: f64
§clock_drift_var: f64
§time: gps_time_t
§valid: u8_
§velocity_valid: u8_
§n_sats_used: u8_
§n_sigs_used: u8_
Trait Implementations§
Source§impl Clone for gnss_solution
impl Clone for gnss_solution
Source§fn clone(&self) -> gnss_solution
fn clone(&self) -> gnss_solution
Returns a copy 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 gnss_solution
impl Debug for gnss_solution
Source§impl PartialEq for gnss_solution
impl PartialEq for gnss_solution
Source§impl PartialOrd for gnss_solution
impl PartialOrd for gnss_solution
impl Copy for gnss_solution
impl StructuralPartialEq for gnss_solution
Auto Trait Implementations§
impl Freeze for gnss_solution
impl RefUnwindSafe for gnss_solution
impl Send for gnss_solution
impl Sync for gnss_solution
impl Unpin for gnss_solution
impl UnwindSafe for gnss_solution
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