pub struct ParamRequestList {
pub target_system: u8,
pub target_component: u8,
}Expand description
PARAM_REQUEST_LIST: asks the vehicle to stream all of its onboard parameters.
Fields§
§target_system: u8§target_component: u8Implementations§
Trait Implementations§
Source§impl Clone for ParamRequestList
impl Clone for ParamRequestList
Source§fn clone(&self) -> ParamRequestList
fn clone(&self) -> ParamRequestList
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for ParamRequestList
Source§impl Debug for ParamRequestList
impl Debug for ParamRequestList
Source§impl Default for ParamRequestList
impl Default for ParamRequestList
Source§impl Message for ParamRequestList
impl Message for ParamRequestList
Source§const NAME: &'static str = "PARAM_REQUEST_LIST"
const NAME: &'static str = "PARAM_REQUEST_LIST"
The message name, such as
"HEARTBEAT", as used to derive CRC_EXTRA.Source§const CRC_EXTRA: u8 = 159
const CRC_EXTRA: u8 = 159
The
CRC_EXTRA seed folded into the checksum of a frame carrying this message.Source§const BASE_FIELDS: &'static [(&'static str, &'static str, u8)]
const BASE_FIELDS: &'static [(&'static str, &'static str, u8)]
The base fields in wire order as
(type, name, array_len), the input from which
CRC_EXTRA is derived and against which it is verified.Source§const DESCRIPTOR: &'static MessageDescriptor<'static>
const DESCRIPTOR: &'static MessageDescriptor<'static>
The message’s shape as data: the runtime counterpart of this type’s fields, for a
caller reading and writing by name rather than through the struct.
Source§impl PartialEq for ParamRequestList
impl PartialEq for ParamRequestList
Source§fn eq(&self, other: &ParamRequestList) -> bool
fn eq(&self, other: &ParamRequestList) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ParamRequestList
Auto Trait Implementations§
impl Freeze for ParamRequestList
impl RefUnwindSafe for ParamRequestList
impl Send for ParamRequestList
impl Sync for ParamRequestList
impl Unpin for ParamRequestList
impl UnsafeUnpin for ParamRequestList
impl UnwindSafe for ParamRequestList
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