Struct mavlink::common::ATT_POS_MOCAP_DATA
source · pub struct ATT_POS_MOCAP_DATA {
pub time_usec: u64,
pub q: [f32; 4],
pub x: f32,
pub y: f32,
pub z: f32,
pub covariance: [f32; 21],
}
Available on crate feature
common
only.Expand description
id: 138 Motion capture attitude and position.
Fields§
§time_usec: u64
Timestamp (UNIX Epoch time or time since system boot). The receiving end can infer timestamp format (since 1.1.1970 or since system boot) by checking for the magnitude of the number..
q: [f32; 4]
Attitude quaternion (w, x, y, z order, zero-rotation is 1, 0, 0, 0).
x: f32
X position (NED).
y: f32
Y position (NED).
z: f32
Z position (NED).
covariance: [f32; 21]
Row-major representation of a pose 6x6 cross-covariance matrix upper right triangle (states: x, y, z, roll, pitch, yaw; first six entries are the first ROW, next five entries are the second ROW, etc.). If unknown, assign NaN value to first element in the array..
Implementations§
source§impl ATT_POS_MOCAP_DATA
impl ATT_POS_MOCAP_DATA
pub const ENCODED_LEN: usize = 120usize
pub const DEFAULT: Self = _
Trait Implementations§
source§impl Clone for ATT_POS_MOCAP_DATA
impl Clone for ATT_POS_MOCAP_DATA
source§fn clone(&self) -> ATT_POS_MOCAP_DATA
fn clone(&self) -> ATT_POS_MOCAP_DATA
Returns a copy 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 ATT_POS_MOCAP_DATA
impl Debug for ATT_POS_MOCAP_DATA
source§impl Default for ATT_POS_MOCAP_DATA
impl Default for ATT_POS_MOCAP_DATA
source§impl<'de> Deserialize<'de> for ATT_POS_MOCAP_DATA
impl<'de> Deserialize<'de> for ATT_POS_MOCAP_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>,
Deserialize this value from the given Serde deserializer. Read more
source§impl MessageData for ATT_POS_MOCAP_DATA
impl MessageData for ATT_POS_MOCAP_DATA
const ID: u32 = 138u32
const NAME: &'static str = "ATT_POS_MOCAP"
const EXTRA_CRC: u8 = 109u8
const ENCODED_LEN: usize = 120usize
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 ATT_POS_MOCAP_DATA
impl PartialEq for ATT_POS_MOCAP_DATA
source§impl Serialize for ATT_POS_MOCAP_DATA
impl Serialize for ATT_POS_MOCAP_DATA
impl StructuralPartialEq for ATT_POS_MOCAP_DATA
Auto Trait Implementations§
impl Freeze for ATT_POS_MOCAP_DATA
impl RefUnwindSafe for ATT_POS_MOCAP_DATA
impl Send for ATT_POS_MOCAP_DATA
impl Sync for ATT_POS_MOCAP_DATA
impl Unpin for ATT_POS_MOCAP_DATA
impl UnwindSafe for ATT_POS_MOCAP_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
Mutably borrows from an owned value. Read more
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)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)