[][src]Struct mavlink::ardupilotmega::DEEPSTALL_DATA

pub struct DEEPSTALL_DATA {
    pub landing_lat: i32,
    pub landing_lon: i32,
    pub path_lat: i32,
    pub path_lon: i32,
    pub arc_entry_lat: i32,
    pub arc_entry_lon: i32,
    pub altitude: f32,
    pub expected_travel_distance: f32,
    pub cross_track_error: f32,
    pub stage: DeepstallStage,
}

id: 195 Deepstall path planning..

Fields

landing_lat: i32

Landing latitude..

landing_lon: i32

Landing longitude..

path_lat: i32

Final heading start point, latitude..

path_lon: i32

Final heading start point, longitude..

arc_entry_lat: i32

Arc entry point, latitude..

arc_entry_lon: i32

Arc entry point, longitude..

altitude: f32

Altitude..

expected_travel_distance: f32

Distance the aircraft expects to travel during the deepstall..

cross_track_error: f32

Deepstall cross track error (only valid when in DEEPSTALL_STAGE_LAND)..

stage: DeepstallStage

Deepstall stage..

Implementations

impl DEEPSTALL_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 DEEPSTALL_DATA[src]

impl Debug for DEEPSTALL_DATA[src]

impl Default for DEEPSTALL_DATA[src]

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

impl PartialEq<DEEPSTALL_DATA> for DEEPSTALL_DATA[src]

impl Serialize for DEEPSTALL_DATA[src]

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