Struct mavlink::ardupilotmega::EFI_STATUS_DATA[][src]

pub struct EFI_STATUS_DATA {
    pub ecu_index: f32,
    pub rpm: f32,
    pub fuel_consumed: f32,
    pub fuel_flow: f32,
    pub engine_load: f32,
    pub throttle_position: f32,
    pub spark_dwell_time: f32,
    pub barometric_pressure: f32,
    pub intake_manifold_pressure: f32,
    pub intake_manifold_temperature: f32,
    pub cylinder_head_temperature: f32,
    pub ignition_timing: f32,
    pub injection_time: f32,
    pub exhaust_gas_temperature: f32,
    pub throttle_out: f32,
    pub pt_compensation: f32,
    pub health: u8,
}

Fields

ecu_index: f32rpm: f32fuel_consumed: f32fuel_flow: f32engine_load: f32throttle_position: f32spark_dwell_time: f32barometric_pressure: f32intake_manifold_pressure: f32intake_manifold_temperature: f32cylinder_head_temperature: f32ignition_timing: f32injection_time: f32exhaust_gas_temperature: f32throttle_out: f32pt_compensation: f32health: u8

Implementations

impl EFI_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 EFI_STATUS_DATA[src]

impl Debug for EFI_STATUS_DATA[src]

impl Default for EFI_STATUS_DATA[src]

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

impl PartialEq<EFI_STATUS_DATA> for EFI_STATUS_DATA[src]

impl Serialize for EFI_STATUS_DATA[src]

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