pub struct Lla {
pub lon: Option<f64>,
pub lat: Option<f64>,
pub alt: Option<f64>,
pub is_2_d: Option<bool>,
pub altitude_reference: Option<LlaAltitudeReference>,
}Fields§
§lon: Option<f64>§lat: Option<f64>§alt: Option<f64>§is_2_d: Option<bool>§altitude_reference: Option<LlaAltitudeReference>Meaning of alt. altitude in meters above either WGS84 or EGM96, use altitude_reference to determine what zero means.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Lla
impl<'de> Deserialize<'de> for Lla
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for Lla
Auto Trait Implementations§
impl Freeze for Lla
impl RefUnwindSafe for Lla
impl Send for Lla
impl Sync for Lla
impl Unpin for Lla
impl UnwindSafe for Lla
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