Struct open_protocol::types::GPSData
[−]
[src]
pub struct GPSData { pub date: u32, pub time: u32, pub longitude: i32, pub latitude: i32, pub amsl: i32, pub velocity_north: f32, pub velocity_east: f32, pub velocity_down: f32, pub hdop: f32, pub pdop: f32, pub fix: f32, pub gnss_status: f32, pub hacc: f32, pub sacc: f32, pub used_gps: u32, pub used_gln: u32, pub nsv: u16, pub gps_counter: u16, }
Fields
date: u32
time: u32
longitude: i32
latitude: i32
amsl: i32
velocity_north: f32
velocity_east: f32
velocity_down: f32
hdop: f32
pdop: f32
fix: f32
gnss_status: f32
hacc: f32
sacc: f32
used_gps: u32
used_gln: u32
nsv: u16
gps_counter: u16
Trait Implementations
impl Debug for GPSData
[src]
impl Copy for GPSData
[src]
impl Clone for GPSData
[src]
fn clone(&self) -> GPSData
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0
Performs copy-assignment from source
. Read more
impl PartialEq for GPSData
[src]
fn eq(&self, __arg_0: &GPSData) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &GPSData) -> bool
This method tests for !=
.