Struct mav_sdk::grpc::mission::MissionItem[][src]

pub struct MissionItem {
    pub latitude_deg: f64,
    pub longitude_deg: f64,
    pub relative_altitude_m: f32,
    pub speed_m_s: f32,
    pub is_fly_through: bool,
    pub gimbal_pitch_deg: f32,
    pub gimbal_yaw_deg: f32,
    pub camera_action: i32,
    pub loiter_time_s: f32,
    pub camera_photo_interval_s: f64,
}
Expand description

Type representing a mission item.

A MissionItem can contain a position and/or actions. Mission items are building blocks to assemble a mission, which can be sent to (or received from) a system. They cannot be used independently.

Fields

latitude_deg: f64

Latitude in degrees (range: -90 to +90)

longitude_deg: f64

Longitude in degrees (range: -180 to +180)

relative_altitude_m: f32

Altitude relative to takeoff altitude in metres

speed_m_s: f32

Speed to use after this mission item (in metres/second)

is_fly_through: bool

True will make the drone fly through without stopping, while false will make the drone stop on the waypoint

gimbal_pitch_deg: f32

Gimbal pitch (in degrees)

gimbal_yaw_deg: f32

Gimbal yaw (in degrees)

camera_action: i32

Camera action to trigger at this mission item

loiter_time_s: f32

Loiter time (in seconds)

camera_photo_interval_s: f64

Camera photo interval to use after this mission item (in seconds)

Implementations

Returns the enum value of camera_action, or the default if the field is set to an invalid enum value.

Sets camera_action to the provided enum value.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Returns the encoded length of the message without a length delimiter.

Clears the message, resetting all fields to their default.

Encodes the message to a buffer. Read more

Encodes the message to a newly allocated buffer.

Encodes the message with a length-delimiter to a buffer. Read more

Encodes the message with a length-delimiter to a newly allocated buffer.

Decodes an instance of the message from a buffer. Read more

Decodes a length-delimited instance of the message from the buffer.

Decodes an instance of the message from a buffer, and merges it into self. Read more

Decodes a length-delimited instance of the message from buffer, and merges it into self. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

Wrap the input message T in a tonic::Request

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.