[][src]Struct mavlink::common::HIL_CONTROLS_DATA

pub struct HIL_CONTROLS_DATA {
    pub time_usec: u64,
    pub roll_ailerons: f32,
    pub pitch_elevator: f32,
    pub yaw_rudder: f32,
    pub throttle: f32,
    pub aux1: f32,
    pub aux2: f32,
    pub aux3: f32,
    pub aux4: f32,
    pub mode: MavMode,
    pub nav_mode: u8,
}

id: 91 Sent from autopilot to simulation. Hardware in the loop control outputs.

Fields

time_usec: u64

id: 91 Sent from autopilot to simulation. Hardware in the loop control outputs.

roll_ailerons: f32

id: 91 Sent from autopilot to simulation. Hardware in the loop control outputs.

pitch_elevator: f32

id: 91 Sent from autopilot to simulation. Hardware in the loop control outputs.

yaw_rudder: f32

id: 91 Sent from autopilot to simulation. Hardware in the loop control outputs.

throttle: f32

id: 91 Sent from autopilot to simulation. Hardware in the loop control outputs.

aux1: f32

id: 91 Sent from autopilot to simulation. Hardware in the loop control outputs.

aux2: f32

id: 91 Sent from autopilot to simulation. Hardware in the loop control outputs.

aux3: f32

id: 91 Sent from autopilot to simulation. Hardware in the loop control outputs.

aux4: f32

id: 91 Sent from autopilot to simulation. Hardware in the loop control outputs.

mode: MavMode

id: 91 Sent from autopilot to simulation. Hardware in the loop control outputs.

nav_mode: u8

id: 91 Sent from autopilot to simulation. Hardware in the loop control outputs.

Implementations

impl HIL_CONTROLS_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 HIL_CONTROLS_DATA[src]

impl Debug for HIL_CONTROLS_DATA[src]

impl Default for HIL_CONTROLS_DATA[src]

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

impl PartialEq<HIL_CONTROLS_DATA> for HIL_CONTROLS_DATA[src]

impl Serialize for HIL_CONTROLS_DATA[src]

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