pub struct PARAM_VALUE_ARRAY_DATA {
pub param_count: u16,
pub param_index_first: u16,
pub flags: u16,
pub param_array_len: u8,
pub packet_buf: [u8; 248],
}
Available on crate feature
storm32
only.Expand description
id: 60041 Parameter multi param value container.
Fields§
§param_count: u16
Total number of onboard parameters.
param_index_first: u16
Index of the first onboard parameter in this array.
flags: u16
Flags.
param_array_len: u8
Number of onboard parameters in this array.
packet_buf: [u8; 248]
Parameters buffer. Contains a series of variable length parameter blocks, one per parameter, with format as specified elsewhere.
Implementations§
Source§impl PARAM_VALUE_ARRAY_DATA
impl PARAM_VALUE_ARRAY_DATA
pub const ENCODED_LEN: usize = 255usize
pub const DEFAULT: Self
Trait Implementations§
Source§impl Clone for PARAM_VALUE_ARRAY_DATA
impl Clone for PARAM_VALUE_ARRAY_DATA
Source§fn clone(&self) -> PARAM_VALUE_ARRAY_DATA
fn clone(&self) -> PARAM_VALUE_ARRAY_DATA
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for PARAM_VALUE_ARRAY_DATA
impl Debug for PARAM_VALUE_ARRAY_DATA
Source§impl Default for PARAM_VALUE_ARRAY_DATA
impl Default for PARAM_VALUE_ARRAY_DATA
Source§impl<'de> Deserialize<'de> for PARAM_VALUE_ARRAY_DATA
impl<'de> Deserialize<'de> for PARAM_VALUE_ARRAY_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 PARAM_VALUE_ARRAY_DATA
impl MessageData for PARAM_VALUE_ARRAY_DATA
const ID: u32 = 60_041u32
const NAME: &'static str = "PARAM_VALUE_ARRAY"
const EXTRA_CRC: u8 = 191u8
const ENCODED_LEN: usize = 255usize
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 PARAM_VALUE_ARRAY_DATA
impl PartialEq for PARAM_VALUE_ARRAY_DATA
Source§fn eq(&self, other: &PARAM_VALUE_ARRAY_DATA) -> bool
fn eq(&self, other: &PARAM_VALUE_ARRAY_DATA) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.Source§impl Serialize for PARAM_VALUE_ARRAY_DATA
impl Serialize for PARAM_VALUE_ARRAY_DATA
impl StructuralPartialEq for PARAM_VALUE_ARRAY_DATA
Auto Trait Implementations§
impl Freeze for PARAM_VALUE_ARRAY_DATA
impl RefUnwindSafe for PARAM_VALUE_ARRAY_DATA
impl Send for PARAM_VALUE_ARRAY_DATA
impl Sync for PARAM_VALUE_ARRAY_DATA
impl Unpin for PARAM_VALUE_ARRAY_DATA
impl UnwindSafe for PARAM_VALUE_ARRAY_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