[][src]Struct f1_telemetry_client::f1_2020::motion::CarMotionData

pub struct CarMotionData {
    pub world_position_x: f32,
    pub world_position_y: f32,
    pub world_position_z: f32,
    pub world_velocity_x: f32,
    pub world_velocity_y: f32,
    pub world_velocity_z: f32,
    pub world_forward_dir_x: i16,
    pub world_forward_dir_y: i16,
    pub world_forward_dir_z: i16,
    pub world_right_dir_x: i16,
    pub world_right_dir_y: i16,
    pub world_right_dir_z: i16,
    pub g_force_lateral: f32,
    pub g_force_longitudinal: f32,
    pub g_force_vertical: f32,
    pub yaw: f32,
    pub pitch: f32,
    pub roll: f32,
}

Fields

world_position_x: f32world_position_y: f32world_position_z: f32world_velocity_x: f32world_velocity_y: f32world_velocity_z: f32world_forward_dir_x: i16world_forward_dir_y: i16world_forward_dir_z: i16world_right_dir_x: i16world_right_dir_y: i16world_right_dir_z: i16g_force_lateral: f32g_force_longitudinal: f32g_force_vertical: f32yaw: f32pitch: f32roll: f32

Trait Implementations

impl Clone for CarMotionData[src]

impl Debug for CarMotionData[src]

impl PartialEq<CarMotionData> for CarMotionData[src]

impl PartialOrd<CarMotionData> for CarMotionData[src]

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