Struct mavlink::uavionix::POSITION_TARGET_LOCAL_NED_DATA
source · pub struct POSITION_TARGET_LOCAL_NED_DATA {}
uavionix
only.Expand description
id: 85 Reports the current commanded vehicle position, velocity, and acceleration as specified by the autopilot. This should match the commands sent in SET_POSITION_TARGET_LOCAL_NED if the vehicle is being controlled this way..
Fields§
§time_boot_ms: u32
Timestamp (time since system boot)..
x: f32
X Position in NED frame.
y: f32
Y Position in NED frame.
z: f32
Z Position in NED frame (note, altitude is negative in NED).
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_LOCAL_NED = 1, MAV_FRAME_LOCAL_OFFSET_NED = 7, MAV_FRAME_BODY_NED = 8, MAV_FRAME_BODY_OFFSET_NED = 9.
Implementations§
source§impl POSITION_TARGET_LOCAL_NED_DATA
impl POSITION_TARGET_LOCAL_NED_DATA
pub const ENCODED_LEN: usize = 51usize
pub const DEFAULT: Self = _
Trait Implementations§
source§impl Clone for POSITION_TARGET_LOCAL_NED_DATA
impl Clone for POSITION_TARGET_LOCAL_NED_DATA
source§fn clone(&self) -> POSITION_TARGET_LOCAL_NED_DATA
fn clone(&self) -> POSITION_TARGET_LOCAL_NED_DATA
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl<'de> Deserialize<'de> for POSITION_TARGET_LOCAL_NED_DATA
impl<'de> Deserialize<'de> for POSITION_TARGET_LOCAL_NED_DATA
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>,
source§impl MessageData for POSITION_TARGET_LOCAL_NED_DATA
impl MessageData for POSITION_TARGET_LOCAL_NED_DATA
const ID: u32 = 85u32
const NAME: &'static str = "POSITION_TARGET_LOCAL_NED"
const EXTRA_CRC: u8 = 140u8
const ENCODED_LEN: usize = 51usize
type Message = MavMessage
fn deser(_version: MavlinkVersion, __input: &[u8]) -> Result<Self, ParserError>
fn ser(&self, version: MavlinkVersion, bytes: &mut [u8]) -> usize
source§impl PartialEq for POSITION_TARGET_LOCAL_NED_DATA
impl PartialEq for POSITION_TARGET_LOCAL_NED_DATA
source§fn eq(&self, other: &POSITION_TARGET_LOCAL_NED_DATA) -> bool
fn eq(&self, other: &POSITION_TARGET_LOCAL_NED_DATA) -> bool
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for POSITION_TARGET_LOCAL_NED_DATA
Auto Trait Implementations§
impl Freeze for POSITION_TARGET_LOCAL_NED_DATA
impl RefUnwindSafe for POSITION_TARGET_LOCAL_NED_DATA
impl Send for POSITION_TARGET_LOCAL_NED_DATA
impl Sync for POSITION_TARGET_LOCAL_NED_DATA
impl Unpin for POSITION_TARGET_LOCAL_NED_DATA
impl UnwindSafe for POSITION_TARGET_LOCAL_NED_DATA
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)