pub struct DATA32_DATA {
pub mavtype: u8,
pub len: u8,
pub data: [u8; 32],
}
Available on crate feature
ardupilotmega
only.Expand description
id: 170 Data packet, size 32..
Fields§
§mavtype: u8
Data type..
len: u8
Data length..
data: [u8; 32]
Raw data..
Implementations§
Source§impl DATA32_DATA
impl DATA32_DATA
pub const ENCODED_LEN: usize = 34usize
pub const DEFAULT: Self
Trait Implementations§
Source§impl Clone for DATA32_DATA
impl Clone for DATA32_DATA
Source§fn clone(&self) -> DATA32_DATA
fn clone(&self) -> DATA32_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 DATA32_DATA
impl Debug for DATA32_DATA
Source§impl Default for DATA32_DATA
impl Default for DATA32_DATA
Source§impl<'de> Deserialize<'de> for DATA32_DATA
impl<'de> Deserialize<'de> for DATA32_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 DATA32_DATA
impl MessageData for DATA32_DATA
const ID: u32 = 170u32
const NAME: &'static str = "DATA32"
const EXTRA_CRC: u8 = 73u8
const ENCODED_LEN: usize = 34usize
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 DATA32_DATA
impl PartialEq for DATA32_DATA
Source§impl Serialize for DATA32_DATA
impl Serialize for DATA32_DATA
impl StructuralPartialEq for DATA32_DATA
Auto Trait Implementations§
impl Freeze for DATA32_DATA
impl RefUnwindSafe for DATA32_DATA
impl Send for DATA32_DATA
impl Sync for DATA32_DATA
impl Unpin for DATA32_DATA
impl UnwindSafe for DATA32_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