Struct mavlink::asluav::SENS_MPPT_DATA[][src]

pub struct SENS_MPPT_DATA {
    pub mppt_timestamp: u64,
    pub mppt1_volt: f32,
    pub mppt1_amp: f32,
    pub mppt2_volt: f32,
    pub mppt2_amp: f32,
    pub mppt3_volt: f32,
    pub mppt3_amp: f32,
    pub mppt1_pwm: u16,
    pub mppt2_pwm: u16,
    pub mppt3_pwm: u16,
    pub mppt1_status: u8,
    pub mppt2_status: u8,
    pub mppt3_status: u8,
}

Fields

mppt_timestamp: u64mppt1_volt: f32mppt1_amp: f32mppt2_volt: f32mppt2_amp: f32mppt3_volt: f32mppt3_amp: f32mppt1_pwm: u16mppt2_pwm: u16mppt3_pwm: u16mppt1_status: u8mppt2_status: u8mppt3_status: u8

Implementations

impl SENS_MPPT_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 SENS_MPPT_DATA[src]

impl Debug for SENS_MPPT_DATA[src]

impl Default for SENS_MPPT_DATA[src]

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

impl PartialEq<SENS_MPPT_DATA> for SENS_MPPT_DATA[src]

impl Serialize for SENS_MPPT_DATA[src]

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