pub struct GpsInfo {
pub longitude: f64,
pub latitude: f64,
pub altitude: f64,
}
Expand description
Container for the three GPS coordinates: longitude, latitude, and altitude.
Fields§
§longitude: f64
§latitude: f64
§altitude: f64
Trait Implementations§
impl Copy for GpsInfo
impl StructuralPartialEq for GpsInfo
Auto Trait Implementations§
impl Freeze for GpsInfo
impl RefUnwindSafe for GpsInfo
impl Send for GpsInfo
impl Sync for GpsInfo
impl Unpin for GpsInfo
impl UnwindSafe for GpsInfo
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