Struct Point
pub struct Point {
pub latitude: f64,
pub longitude: f64,
pub hae: f64,
pub ce: f64,
pub le: f64,
}Expand description
Point data includes GPS coordinates
latitude- Latitude in decimal degreeslongitude- Longitude in decimal degreeshae- Height above the WGS ellipsoid in metersce- Circular Error in metersle- Linear Error in meters
Fields§
§latitude: f64§longitude: f64§hae: f64§ce: f64§le: f64Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Point
impl RefUnwindSafe for Point
impl Send for Point
impl Sync for Point
impl Unpin for Point
impl UnwindSafe for Point
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