[][src]Struct mavlink::common::LINK_NODE_STATUS_DATA

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,
}

id: 8 Status generated in each node in the communication chain and injected into MAVLink stream..

Fields

timestamp: u64

id: 8 Status generated in each node in the communication chain and injected into MAVLink stream..

tx_rate: u32

id: 8 Status generated in each node in the communication chain and injected into MAVLink stream..

rx_rate: u32

id: 8 Status generated in each node in the communication chain and injected into MAVLink stream..

messages_sent: u32

id: 8 Status generated in each node in the communication chain and injected into MAVLink stream..

messages_received: u32

id: 8 Status generated in each node in the communication chain and injected into MAVLink stream..

messages_lost: u32

id: 8 Status generated in each node in the communication chain and injected into MAVLink stream..

rx_parse_err: u16

id: 8 Status generated in each node in the communication chain and injected into MAVLink stream..

tx_overflows: u16

id: 8 Status generated in each node in the communication chain and injected into MAVLink stream..

rx_overflows: u16

id: 8 Status generated in each node in the communication chain and injected into MAVLink stream..

tx_buf: u8

id: 8 Status generated in each node in the communication chain and injected into MAVLink stream..

rx_buf: u8

id: 8 Status generated in each node in the communication chain and injected into MAVLink stream..

Implementations

impl LINK_NODE_STATUS_DATA[src]

pub const ENCODED_LEN: usize[src]

pub fn deser(
    version: MavlinkVersion,
    _input: &[u8]
) -> Result<Self, ParserError>
[src]

pub fn ser(&self) -> Vec<u8>[src]

Trait Implementations

impl Clone for LINK_NODE_STATUS_DATA[src]

impl Debug for LINK_NODE_STATUS_DATA[src]

impl Default for LINK_NODE_STATUS_DATA[src]

impl<'de> Deserialize<'de> for LINK_NODE_STATUS_DATA[src]

impl Serialize for LINK_NODE_STATUS_DATA[src]

impl StructuralPartialEq for LINK_NODE_STATUS_DATA[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.