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