pub struct PARAM_EXT_VALUE_DATA {
pub param_count: u16,
pub param_index: u16,
pub param_id: [u8; 16],
pub param_value: [u8; 128],
pub param_type: MavParamExtType,
}
Available on crate feature
avssuas
only.Expand description
id: 322 Emit the value of a parameter. The inclusion of param_count and param_index in the message allows the recipient to keep track of received parameters and allows them to re-request missing parameters after a loss or timeout..
Fields§
§param_count: u16
Total number of parameters.
param_index: u16
Index of this parameter.
param_id: [u8; 16]
Parameter id, terminated by NULL if the length is less than 16 human-readable chars and WITHOUT null termination (NULL) byte if the length is exactly 16 chars - applications have to provide 16+1 bytes storage if the ID is stored as string.
param_value: [u8; 128]
Parameter value.
param_type: MavParamExtType
Parameter type..
Implementations§
Source§impl PARAM_EXT_VALUE_DATA
impl PARAM_EXT_VALUE_DATA
pub const ENCODED_LEN: usize = 149usize
pub const DEFAULT: Self
Trait Implementations§
Source§impl Clone for PARAM_EXT_VALUE_DATA
impl Clone for PARAM_EXT_VALUE_DATA
Source§fn clone(&self) -> PARAM_EXT_VALUE_DATA
fn clone(&self) -> PARAM_EXT_VALUE_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 PARAM_EXT_VALUE_DATA
impl Debug for PARAM_EXT_VALUE_DATA
Source§impl Default for PARAM_EXT_VALUE_DATA
impl Default for PARAM_EXT_VALUE_DATA
Source§impl<'de> Deserialize<'de> for PARAM_EXT_VALUE_DATA
impl<'de> Deserialize<'de> for PARAM_EXT_VALUE_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_EXT_VALUE_DATA
impl MessageData for PARAM_EXT_VALUE_DATA
const ID: u32 = 322u32
const NAME: &'static str = "PARAM_EXT_VALUE"
const EXTRA_CRC: u8 = 243u8
const ENCODED_LEN: usize = 149usize
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_EXT_VALUE_DATA
impl PartialEq for PARAM_EXT_VALUE_DATA
Source§impl Serialize for PARAM_EXT_VALUE_DATA
impl Serialize for PARAM_EXT_VALUE_DATA
impl StructuralPartialEq for PARAM_EXT_VALUE_DATA
Auto Trait Implementations§
impl Freeze for PARAM_EXT_VALUE_DATA
impl RefUnwindSafe for PARAM_EXT_VALUE_DATA
impl Send for PARAM_EXT_VALUE_DATA
impl Sync for PARAM_EXT_VALUE_DATA
impl Unpin for PARAM_EXT_VALUE_DATA
impl UnwindSafe for PARAM_EXT_VALUE_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