[][src]Struct mavlink::common::OPEN_DRONE_ID_LOCATION_DATA

pub struct OPEN_DRONE_ID_LOCATION_DATA {
    pub latitude: i32,
    pub longitude: i32,
    pub altitude_barometric: f32,
    pub altitude_geodetic: f32,
    pub height: f32,
    pub timestamp: f32,
    pub direction: u16,
    pub speed_horizontal: u16,
    pub speed_vertical: i16,
    pub status: MavOdidStatus,
    pub height_reference: MavOdidHeightRef,
    pub horizontal_accuracy: MavOdidHorAcc,
    pub vertical_accuracy: MavOdidVerAcc,
    pub barometer_accuracy: MavOdidVerAcc,
    pub speed_accuracy: MavOdidSpeedAcc,
    pub timestamp_accuracy: MavOdidTimeAcc,
}

id: 12901 Data for filling the OpenDroneID Location message. The float data types are 32-bit IEEE 754. The Location message provides the location, altitude, direction and speed of the aircraft..

Fields

latitude: i32

id: 12901 Data for filling the OpenDroneID Location message. The float data types are 32-bit IEEE 754. The Location message provides the location, altitude, direction and speed of the aircraft..

longitude: i32

id: 12901 Data for filling the OpenDroneID Location message. The float data types are 32-bit IEEE 754. The Location message provides the location, altitude, direction and speed of the aircraft..

altitude_barometric: f32

id: 12901 Data for filling the OpenDroneID Location message. The float data types are 32-bit IEEE 754. The Location message provides the location, altitude, direction and speed of the aircraft..

altitude_geodetic: f32

id: 12901 Data for filling the OpenDroneID Location message. The float data types are 32-bit IEEE 754. The Location message provides the location, altitude, direction and speed of the aircraft..

height: f32

id: 12901 Data for filling the OpenDroneID Location message. The float data types are 32-bit IEEE 754. The Location message provides the location, altitude, direction and speed of the aircraft..

timestamp: f32

id: 12901 Data for filling the OpenDroneID Location message. The float data types are 32-bit IEEE 754. The Location message provides the location, altitude, direction and speed of the aircraft..

direction: u16

id: 12901 Data for filling the OpenDroneID Location message. The float data types are 32-bit IEEE 754. The Location message provides the location, altitude, direction and speed of the aircraft..

speed_horizontal: u16

id: 12901 Data for filling the OpenDroneID Location message. The float data types are 32-bit IEEE 754. The Location message provides the location, altitude, direction and speed of the aircraft..

speed_vertical: i16

id: 12901 Data for filling the OpenDroneID Location message. The float data types are 32-bit IEEE 754. The Location message provides the location, altitude, direction and speed of the aircraft..

status: MavOdidStatus

id: 12901 Data for filling the OpenDroneID Location message. The float data types are 32-bit IEEE 754. The Location message provides the location, altitude, direction and speed of the aircraft..

height_reference: MavOdidHeightRef

id: 12901 Data for filling the OpenDroneID Location message. The float data types are 32-bit IEEE 754. The Location message provides the location, altitude, direction and speed of the aircraft..

horizontal_accuracy: MavOdidHorAcc

id: 12901 Data for filling the OpenDroneID Location message. The float data types are 32-bit IEEE 754. The Location message provides the location, altitude, direction and speed of the aircraft..

vertical_accuracy: MavOdidVerAcc

id: 12901 Data for filling the OpenDroneID Location message. The float data types are 32-bit IEEE 754. The Location message provides the location, altitude, direction and speed of the aircraft..

barometer_accuracy: MavOdidVerAcc

id: 12901 Data for filling the OpenDroneID Location message. The float data types are 32-bit IEEE 754. The Location message provides the location, altitude, direction and speed of the aircraft..

speed_accuracy: MavOdidSpeedAcc

id: 12901 Data for filling the OpenDroneID Location message. The float data types are 32-bit IEEE 754. The Location message provides the location, altitude, direction and speed of the aircraft..

timestamp_accuracy: MavOdidTimeAcc

id: 12901 Data for filling the OpenDroneID Location message. The float data types are 32-bit IEEE 754. The Location message provides the location, altitude, direction and speed of the aircraft..

Implementations

impl OPEN_DRONE_ID_LOCATION_DATA[src]

pub const ENCODED_LEN: usize[src]

pub fn deser(
    version: MavlinkVersion,
    _input: &[u8]
) -> Result<Self, ParserError>
[src]

pub fn ser(&self) -> Vec<u8>[src]

Trait Implementations

impl Clone for OPEN_DRONE_ID_LOCATION_DATA[src]

impl Debug for OPEN_DRONE_ID_LOCATION_DATA[src]

impl Default for OPEN_DRONE_ID_LOCATION_DATA[src]

impl<'de> Deserialize<'de> for OPEN_DRONE_ID_LOCATION_DATA[src]

impl PartialEq<OPEN_DRONE_ID_LOCATION_DATA> for OPEN_DRONE_ID_LOCATION_DATA[src]

impl Serialize for OPEN_DRONE_ID_LOCATION_DATA[src]

impl StructuralPartialEq for OPEN_DRONE_ID_LOCATION_DATA[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.