pub struct EastNorthElevation {
pub easting: f64,
pub northing: f64,
pub up: f64,
}Expand description
East North Elevation coordinates Always stored in meters
Fields§
§easting: f64§northing: f64§up: f64Implementations§
Trait Implementations§
Source§impl Clone for EastNorthElevation
impl Clone for EastNorthElevation
Source§fn clone(&self) -> EastNorthElevation
fn clone(&self) -> EastNorthElevation
Returns a duplicate of the value. Read more
1.0.0 · 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 EastNorthElevation
impl Debug for EastNorthElevation
Source§impl PartialEq for EastNorthElevation
impl PartialEq for EastNorthElevation
impl Copy for EastNorthElevation
impl StructuralPartialEq for EastNorthElevation
Auto Trait Implementations§
impl Freeze for EastNorthElevation
impl RefUnwindSafe for EastNorthElevation
impl Send for EastNorthElevation
impl Sync for EastNorthElevation
impl Unpin for EastNorthElevation
impl UnwindSafe for EastNorthElevation
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