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

pub struct PacketMotionData {
    pub header: PacketHeader,
    pub motion_data: Vec<CarMotionData>,
    pub suspension_position: Wheel<f32>,
    pub suspension_velocity: Wheel<f32>,
    pub suspension_acceleration: Wheel<f32>,
    pub wheel_speed: Wheel<f32>,
    pub wheel_slip: Wheel<f32>,
    pub local_velocity_x: f32,
    pub local_velocity_y: f32,
    pub local_velocity_z: f32,
    pub angular_velocity_x: f32,
    pub angular_velocity_y: f32,
    pub angular_velocity_z: f32,
    pub angular_acceleration_x: f32,
    pub angular_acceleration_y: f32,
    pub angular_acceleration_z: f32,
    pub front_wheels_angle: f32,
}

Fields

header: PacketHeadermotion_data: Vec<CarMotionData>suspension_position: Wheel<f32>suspension_velocity: Wheel<f32>suspension_acceleration: Wheel<f32>wheel_speed: Wheel<f32>wheel_slip: Wheel<f32>local_velocity_x: f32local_velocity_y: f32local_velocity_z: f32angular_velocity_x: f32angular_velocity_y: f32angular_velocity_z: f32angular_acceleration_x: f32angular_acceleration_y: f32angular_acceleration_z: f32front_wheels_angle: f32

Trait Implementations

impl Clone for PacketMotionData[src]

impl Debug for PacketMotionData[src]

impl Eq for PacketMotionData[src]

impl PartialEq<PacketMotionData> for PacketMotionData[src]

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