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 degrees
- longitude- Longitude in decimal degrees
- hae- Height above the WGS ellipsoid in meters
- ce- Circular Error in meters
- le- 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