pub struct POSITION_TARGET_GLOBAL_INT_DATA {
Show 14 fields pub time_boot_ms: u32, pub lat_int: i32, pub lon_int: i32, pub alt: f32, pub vx: f32, pub vy: f32, pub vz: f32, pub afx: f32, pub afy: f32, pub afz: f32, pub yaw: f32, pub yaw_rate: f32, pub type_mask: PositionTargetTypemask, pub coordinate_frame: MavFrame,
}
Expand description

id: 87 Reports the current commanded vehicle position, velocity, and acceleration as specified by the autopilot. This should match the commands sent in SET_POSITION_TARGET_GLOBAL_INT if the vehicle is being controlled this way..

Fields§

§time_boot_ms: u32

Timestamp (time since system boot). The rationale for the timestamp in the setpoint is to allow the system to compensate for the transport delay of the setpoint. This allows the system to compensate processing latency..

§lat_int: i32

X Position in WGS84 frame.

§lon_int: i32

Y Position in WGS84 frame.

§alt: f32

Altitude (MSL, AGL or relative to home altitude, depending on frame).

§vx: f32

X velocity in NED frame.

§vy: f32

Y velocity in NED frame.

§vz: f32

Z velocity in NED frame.

§afx: f32

X acceleration or force (if bit 10 of type_mask is set) in NED frame in meter / s^2 or N.

§afy: f32

Y acceleration or force (if bit 10 of type_mask is set) in NED frame in meter / s^2 or N.

§afz: f32

Z acceleration or force (if bit 10 of type_mask is set) in NED frame in meter / s^2 or N.

§yaw: f32

yaw setpoint.

§yaw_rate: f32

yaw rate setpoint.

§type_mask: PositionTargetTypemask

Bitmap to indicate which dimensions should be ignored by the vehicle..

§coordinate_frame: MavFrame

Valid options are: MAV_FRAME_GLOBAL_INT = 5, MAV_FRAME_GLOBAL_RELATIVE_ALT_INT = 6, MAV_FRAME_GLOBAL_TERRAIN_ALT_INT = 11.

Implementations§

Trait Implementations§

source§

impl Clone for POSITION_TARGET_GLOBAL_INT_DATA

source§

fn clone(&self) -> POSITION_TARGET_GLOBAL_INT_DATA

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for POSITION_TARGET_GLOBAL_INT_DATA

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for POSITION_TARGET_GLOBAL_INT_DATA

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl<'de> Deserialize<'de> for POSITION_TARGET_GLOBAL_INT_DATA

source§

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 MessageData for POSITION_TARGET_GLOBAL_INT_DATA

§

type Message = MavMessage

source§

const ID: u32 = 87u32

source§

const NAME: &'static str = "POSITION_TARGET_GLOBAL_INT"

source§

const EXTRA_CRC: u8 = 150u8

source§

const ENCODED_LEN: usize = 51usize

source§

fn deser(_version: MavlinkVersion, __input: &[u8]) -> Result<Self, ParserError>

source§

fn ser(&self, version: MavlinkVersion, bytes: &mut [u8]) -> usize

source§

impl PartialEq for POSITION_TARGET_GLOBAL_INT_DATA

source§

fn eq(&self, other: &POSITION_TARGET_GLOBAL_INT_DATA) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Serialize for POSITION_TARGET_GLOBAL_INT_DATA

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl StructuralPartialEq for POSITION_TARGET_GLOBAL_INT_DATA

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> DeserializeOwned for Twhere T: for<'de> Deserialize<'de>,