pub struct GeographicLocation {
pub latitude: Option<f64>,
pub longitude: Option<f64>,
pub height: Option<f64>,
}Fields§
§latitude: Option<f64>§longitude: Option<f64>§height: Option<f64>Implementations§
Source§impl GeographicLocation
impl GeographicLocation
pub const UNKNOWN: GeographicLocation
Trait Implementations§
Source§impl Debug for GeographicLocation
impl Debug for GeographicLocation
Source§impl PartialEq for GeographicLocation
impl PartialEq for GeographicLocation
impl StructuralPartialEq for GeographicLocation
Auto Trait Implementations§
impl Freeze for GeographicLocation
impl RefUnwindSafe for GeographicLocation
impl Send for GeographicLocation
impl Sync for GeographicLocation
impl Unpin for GeographicLocation
impl UnsafeUnpin for GeographicLocation
impl UnwindSafe for GeographicLocation
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