pub struct LINK_NODE_STATUS_DATA {
    pub timestamp: u64,
    pub tx_rate: u32,
    pub rx_rate: u32,
    pub messages_sent: u32,
    pub messages_received: u32,
    pub messages_lost: u32,
    pub rx_parse_err: u16,
    pub tx_overflows: u16,
    pub rx_overflows: u16,
    pub tx_buf: u8,
    pub rx_buf: u8,
}Available on crate feature 
avssuas only.Expand description
Status generated in each node in the communication chain and injected into MAVLink stream.
ID: 8
Fields§
§timestamp: u64Timestamp (time since system boot).
tx_rate: u32Transmit rate
rx_rate: u32Receive rate
messages_sent: u32Messages sent
messages_received: u32Messages received (estimated from counting seq)
messages_lost: u32Messages lost (estimated from counting seq)
rx_parse_err: u16Number of bytes that could not be parsed correctly.
tx_overflows: u16Transmit buffer overflows. This number wraps around as it reaches UINT16_MAX
rx_overflows: u16Receive buffer overflows. This number wraps around as it reaches UINT16_MAX
tx_buf: u8Remaining free transmit buffer space
rx_buf: u8Remaining free receive buffer space
Implementations§
Source§impl LINK_NODE_STATUS_DATA
 
impl LINK_NODE_STATUS_DATA
pub const ENCODED_LEN: usize = 36usize
pub const DEFAULT: Self
Trait Implementations§
Source§impl Clone for LINK_NODE_STATUS_DATA
 
impl Clone for LINK_NODE_STATUS_DATA
Source§fn clone(&self) -> LINK_NODE_STATUS_DATA
 
fn clone(&self) -> LINK_NODE_STATUS_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 LINK_NODE_STATUS_DATA
 
impl Debug for LINK_NODE_STATUS_DATA
Source§impl Default for LINK_NODE_STATUS_DATA
 
impl Default for LINK_NODE_STATUS_DATA
Source§impl<'de> Deserialize<'de> for LINK_NODE_STATUS_DATA
 
impl<'de> Deserialize<'de> for LINK_NODE_STATUS_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 LINK_NODE_STATUS_DATA
 
impl MessageData for LINK_NODE_STATUS_DATA
Source§impl PartialEq for LINK_NODE_STATUS_DATA
 
impl PartialEq for LINK_NODE_STATUS_DATA
Source§impl Serialize for LINK_NODE_STATUS_DATA
 
impl Serialize for LINK_NODE_STATUS_DATA
impl StructuralPartialEq for LINK_NODE_STATUS_DATA
Auto Trait Implementations§
impl Freeze for LINK_NODE_STATUS_DATA
impl RefUnwindSafe for LINK_NODE_STATUS_DATA
impl Send for LINK_NODE_STATUS_DATA
impl Sync for LINK_NODE_STATUS_DATA
impl Unpin for LINK_NODE_STATUS_DATA
impl UnwindSafe for LINK_NODE_STATUS_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