[][src]Struct corroded_drone::tello::State

pub struct State {
    pub roll: i16,
    pub pitch: i16,
    pub yaw: i16,
    pub ground_velocity_x: i16,
    pub ground_velocity_y: i16,
    pub ground_velocity_z: i16,
    pub temperature_minimum: u8,
    pub temperature_maximum: u8,
    pub tof_value: i16,
    pub height: i16,
    pub battery_percentage: u8,
    pub barometer_height: f32,
    pub time: u16,
    pub ground_acceleration_x: f32,
    pub ground_acceleration_y: f32,
    pub ground_acceleration_z: f32,
}

Fields

roll: i16pitch: i16yaw: i16ground_velocity_x: i16ground_velocity_y: i16ground_velocity_z: i16temperature_minimum: u8temperature_maximum: u8tof_value: i16height: i16battery_percentage: u8barometer_height: f32time: u16ground_acceleration_x: f32ground_acceleration_y: f32ground_acceleration_z: f32

Trait Implementations

impl Clone for State[src]

impl Copy for State[src]

Auto Trait Implementations

impl Send for State

impl Sync for State

impl Unpin for State

impl UnwindSafe for State

impl RefUnwindSafe for State

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for 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.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]