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

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

Fields

time_usec: u64uptime: u32ram_usage: u32ram_total: u32storage_type: [u32; 4]storage_usage: [u32; 4]storage_total: [u32; 4]link_type: [u32; 6]link_tx_rate: [u32; 6]link_rx_rate: [u32; 6]link_tx_max: [u32; 6]link_rx_max: [u32; 6]fan_speed: [i16; 4]mavtype: u8cpu_cores: [u8; 8]cpu_combined: [u8; 10]gpu_cores: [u8; 4]gpu_combined: [u8; 10]temperature_board: i8temperature_core: [i8; 8]

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.