[][src]Struct mavlink::common::ONBOARD_COMPUTER_STATUS_DATA

pub struct ONBOARD_COMPUTER_STATUS_DATA {
    pub time_usec: u64,
    pub uptime: u32,
    pub ram_usage: u32,
    pub ram_total: u32,
    pub storage_type: [u32; 4],
    pub storage_usage: [u32; 4],
    pub storage_total: [u32; 4],
    pub link_type: [u32; 6],
    pub link_tx_rate: [u32; 6],
    pub link_rx_rate: [u32; 6],
    pub link_tx_max: [u32; 6],
    pub link_rx_max: [u32; 6],
    pub fan_speed: [i16; 4],
    pub mavtype: u8,
    pub cpu_cores: [u8; 8],
    pub cpu_combined: [u8; 10],
    pub gpu_cores: [u8; 4],
    pub gpu_combined: [u8; 10],
    pub temperature_board: i8,
    pub temperature_core: [i8; 8],
}

id: 390 Hardware status sent by an onboard computer..

Fields

time_usec: u64

id: 390 Hardware status sent by an onboard computer..

uptime: u32

id: 390 Hardware status sent by an onboard computer..

ram_usage: u32

id: 390 Hardware status sent by an onboard computer..

ram_total: u32

id: 390 Hardware status sent by an onboard computer..

storage_type: [u32; 4]

id: 390 Hardware status sent by an onboard computer..

storage_usage: [u32; 4]

id: 390 Hardware status sent by an onboard computer..

storage_total: [u32; 4]

id: 390 Hardware status sent by an onboard computer..

link_type: [u32; 6]

id: 390 Hardware status sent by an onboard computer..

link_tx_rate: [u32; 6]

id: 390 Hardware status sent by an onboard computer..

link_rx_rate: [u32; 6]

id: 390 Hardware status sent by an onboard computer..

link_tx_max: [u32; 6]

id: 390 Hardware status sent by an onboard computer..

link_rx_max: [u32; 6]

id: 390 Hardware status sent by an onboard computer..

fan_speed: [i16; 4]

id: 390 Hardware status sent by an onboard computer..

mavtype: u8

id: 390 Hardware status sent by an onboard computer..

cpu_cores: [u8; 8]

id: 390 Hardware status sent by an onboard computer..

cpu_combined: [u8; 10]

id: 390 Hardware status sent by an onboard computer..

gpu_cores: [u8; 4]

id: 390 Hardware status sent by an onboard computer..

gpu_combined: [u8; 10]

id: 390 Hardware status sent by an onboard computer..

temperature_board: i8

id: 390 Hardware status sent by an onboard computer..

temperature_core: [i8; 8]

id: 390 Hardware status sent by an onboard computer..

Implementations

impl ONBOARD_COMPUTER_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 ONBOARD_COMPUTER_STATUS_DATA[src]

impl Debug for ONBOARD_COMPUTER_STATUS_DATA[src]

impl Default for ONBOARD_COMPUTER_STATUS_DATA[src]

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

impl PartialEq<ONBOARD_COMPUTER_STATUS_DATA> for ONBOARD_COMPUTER_STATUS_DATA[src]

impl Serialize for ONBOARD_COMPUTER_STATUS_DATA[src]

impl StructuralPartialEq for ONBOARD_COMPUTER_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.