pub struct PositionLLA {
pub lon: f64,
pub lat: f64,
pub alt: f64,
}Expand description
Represents a geodetic Position in the form of Longitude, Latitude, and Altitude This can be constructed for example from NavPosLlh and NavPvt uBlox packets.
Fields§
§lon: f64Longitude in degrees
lat: f64Latitude in degrees
alt: f64Altitude in meters
Trait Implementations§
Source§impl Clone for PositionLLA
impl Clone for PositionLLA
Source§fn clone(&self) -> PositionLLA
fn clone(&self) -> PositionLLA
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 PositionLLA
impl Debug for PositionLLA
Source§impl<'de> Deserialize<'de> for PositionLLA
impl<'de> Deserialize<'de> for PositionLLA
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
Source§impl<T> From<&T> for PositionLLAwhere
T: ToLLA,
impl<T> From<&T> for PositionLLAwhere
T: ToLLA,
Source§impl Serialize for PositionLLA
impl Serialize for PositionLLA
impl Copy for PositionLLA
Auto Trait Implementations§
impl Freeze for PositionLLA
impl RefUnwindSafe for PositionLLA
impl Send for PositionLLA
impl Sync for PositionLLA
impl Unpin for PositionLLA
impl UnsafeUnpin for PositionLLA
impl UnwindSafe for PositionLLA
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