[][src]Struct mavlink::ardupilotmega::LIMITS_STATUS_DATA

pub struct LIMITS_STATUS_DATA {
    pub last_trigger: u32,
    pub last_action: u32,
    pub last_recovery: u32,
    pub last_clear: u32,
    pub breach_count: u16,
    pub limits_state: LimitsState,
    pub mods_enabled: LimitModule,
    pub mods_required: LimitModule,
    pub mods_triggered: LimitModule,
}

id: 167 Status of AP_Limits. Sent in extended status stream when AP_Limits is enabled..

Fields

last_trigger: u32

Time (since boot) of last breach..

last_action: u32

Time (since boot) of last recovery action..

last_recovery: u32

Time (since boot) of last successful recovery..

last_clear: u32

Time (since boot) of last all-clear..

breach_count: u16

Number of fence breaches..

limits_state: LimitsState

State of AP_Limits..

mods_enabled: LimitModule

AP_Limit_Module bitfield of enabled modules..

mods_required: LimitModule

AP_Limit_Module bitfield of required modules..

mods_triggered: LimitModule

AP_Limit_Module bitfield of triggered modules..

Implementations

impl LIMITS_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 LIMITS_STATUS_DATA[src]

impl Debug for LIMITS_STATUS_DATA[src]

impl Default for LIMITS_STATUS_DATA[src]

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

impl PartialEq<LIMITS_STATUS_DATA> for LIMITS_STATUS_DATA[src]

impl Serialize for LIMITS_STATUS_DATA[src]

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