#[repr(C)]pub struct VeloxityFfiGnss {Show 14 fields
pub timestamp_us: u64,
pub fix_type: u8,
pub num_sat: u8,
pub lat_degrees: f64,
pub lon_degrees: f64,
pub alt: f32,
pub horizontal_accuracy: f32,
pub vertical_accuracy: f32,
pub vel_n: f32,
pub vel_e: f32,
pub vel_d: f32,
pub speed_accuracy: f32,
pub unix_seconds: i64,
pub unix_nanos: i32,
}Fields§
§timestamp_us: u64§fix_type: u8§num_sat: u8§lat_degrees: f64§lon_degrees: f64§alt: f32§horizontal_accuracy: f32§vertical_accuracy: f32§vel_n: f32§vel_e: f32§vel_d: f32§speed_accuracy: f32§unix_seconds: i64§unix_nanos: i32Trait Implementations§
Source§impl Clone for VeloxityFfiGnss
impl Clone for VeloxityFfiGnss
Source§fn clone(&self) -> VeloxityFfiGnss
fn clone(&self) -> VeloxityFfiGnss
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 moreSource§impl Debug for VeloxityFfiGnss
impl Debug for VeloxityFfiGnss
Source§impl Default for VeloxityFfiGnss
impl Default for VeloxityFfiGnss
Source§fn default() -> VeloxityFfiGnss
fn default() -> VeloxityFfiGnss
Returns the “default value” for a type. Read more
impl Copy for VeloxityFfiGnss
Auto Trait Implementations§
impl Freeze for VeloxityFfiGnss
impl RefUnwindSafe for VeloxityFfiGnss
impl Send for VeloxityFfiGnss
impl Sync for VeloxityFfiGnss
impl Unpin for VeloxityFfiGnss
impl UnsafeUnpin for VeloxityFfiGnss
impl UnwindSafe for VeloxityFfiGnss
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self from the equivalent element of its
superset. Read more§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self is actually part of its subset T (and can be converted to it).§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset but without any property checks. Always succeeds.§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.