pub struct RESPONSE_EVENT_ERROR_DATA {
    pub sequence: u16,
    pub sequence_oldest_available: u16,
    pub target_system: u8,
    pub target_component: u8,
    pub reason: MavEventErrorReason,
}Available on crate feature 
uavionix only.Expand description
Response to a REQUEST_EVENT in case of an error (e.g. the event is not available anymore).
ID: 413
Fields§
§sequence: u16Sequence number.
sequence_oldest_available: u16Oldest Sequence number that is still available after the sequence set in REQUEST_EVENT.
target_system: u8System ID
target_component: u8Component ID
reason: MavEventErrorReasonError reason.
Implementations§
Source§impl RESPONSE_EVENT_ERROR_DATA
 
impl RESPONSE_EVENT_ERROR_DATA
pub const ENCODED_LEN: usize = 7usize
pub const DEFAULT: Self
Trait Implementations§
Source§impl Clone for RESPONSE_EVENT_ERROR_DATA
 
impl Clone for RESPONSE_EVENT_ERROR_DATA
Source§fn clone(&self) -> RESPONSE_EVENT_ERROR_DATA
 
fn clone(&self) -> RESPONSE_EVENT_ERROR_DATA
Returns a duplicate 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 RESPONSE_EVENT_ERROR_DATA
 
impl Debug for RESPONSE_EVENT_ERROR_DATA
Source§impl Default for RESPONSE_EVENT_ERROR_DATA
 
impl Default for RESPONSE_EVENT_ERROR_DATA
Source§impl<'de> Deserialize<'de> for RESPONSE_EVENT_ERROR_DATA
 
impl<'de> Deserialize<'de> for RESPONSE_EVENT_ERROR_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 RESPONSE_EVENT_ERROR_DATA
 
impl MessageData for RESPONSE_EVENT_ERROR_DATA
impl StructuralPartialEq for RESPONSE_EVENT_ERROR_DATA
Auto Trait Implementations§
impl Freeze for RESPONSE_EVENT_ERROR_DATA
impl RefUnwindSafe for RESPONSE_EVENT_ERROR_DATA
impl Send for RESPONSE_EVENT_ERROR_DATA
impl Sync for RESPONSE_EVENT_ERROR_DATA
impl Unpin for RESPONSE_EVENT_ERROR_DATA
impl UnwindSafe for RESPONSE_EVENT_ERROR_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