pub struct DEBUG_VECT_DATA {
pub time_usec: u64,
pub x: f32,
pub y: f32,
pub z: f32,
pub name: CharArray<10>,
}Available on crate feature
ardupilotmega only.Expand description
To debug something using a named 3D vector.
ID: 250
Fields§
§time_usec: u64Timestamp (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.
x: f32x
y: f32y
z: f32z
name: CharArray<10>Name
Implementations§
Source§impl DEBUG_VECT_DATA
impl DEBUG_VECT_DATA
pub const ENCODED_LEN: usize = 30usize
pub const DEFAULT: Self
Trait Implementations§
Source§impl Clone for DEBUG_VECT_DATA
impl Clone for DEBUG_VECT_DATA
Source§fn clone(&self) -> DEBUG_VECT_DATA
fn clone(&self) -> DEBUG_VECT_DATA
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 DEBUG_VECT_DATA
impl Debug for DEBUG_VECT_DATA
Source§impl Default for DEBUG_VECT_DATA
impl Default for DEBUG_VECT_DATA
Source§impl<'de> Deserialize<'de> for DEBUG_VECT_DATA
impl<'de> Deserialize<'de> for DEBUG_VECT_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 DEBUG_VECT_DATA
impl MessageData for DEBUG_VECT_DATA
Source§impl PartialEq for DEBUG_VECT_DATA
impl PartialEq for DEBUG_VECT_DATA
Source§impl Serialize for DEBUG_VECT_DATA
impl Serialize for DEBUG_VECT_DATA
impl StructuralPartialEq for DEBUG_VECT_DATA
Auto Trait Implementations§
impl Freeze for DEBUG_VECT_DATA
impl RefUnwindSafe for DEBUG_VECT_DATA
impl Send for DEBUG_VECT_DATA
impl Sync for DEBUG_VECT_DATA
impl Unpin for DEBUG_VECT_DATA
impl UnwindSafe for DEBUG_VECT_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