pub struct InverseResult {
pub s12: f64,
pub azi1: f64,
pub azi2: f64,
pub s12_area: f64,
}Expand description
Result of the inverse geodesic problem between two points.
Fields§
§s12: f64Geodesic distance in meters
azi1: f64Forward azimuth at point 1 (degrees, clockwise from north)
azi2: f64Forward azimuth at point 2 (degrees, clockwise from north)
s12_area: f64Area element between the geodesic and the equator (square meters)
Trait Implementations§
Source§impl Clone for InverseResult
impl Clone for InverseResult
Source§fn clone(&self) -> InverseResult
fn clone(&self) -> InverseResult
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 InverseResult
impl Debug for InverseResult
impl Copy for InverseResult
Auto Trait Implementations§
impl Freeze for InverseResult
impl RefUnwindSafe for InverseResult
impl Send for InverseResult
impl Sync for InverseResult
impl Unpin for InverseResult
impl UnsafeUnpin for InverseResult
impl UnwindSafe for InverseResult
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