[][src]Struct cm_telemetry::f1::f1_2020::Motion

pub struct Motion {
    pub header: Header,
    pub car_motion_data: Vec<CarMotionData>,
    pub suspension_position: WheelValue<f32>,
    pub suspension_velocity: WheelValue<f32>,
    pub suspension_acceleration: WheelValue<f32>,
    pub wheel_speed: WheelValue<f32>,
    pub wheel_slip: WheelValue<f32>,
    pub local_velocity: Coordinates<f32>,
    pub angular_velocity: Coordinates<f32>,
    pub angular_acceleration: Coordinates<f32>,
    pub front_wheel_angle: f32,
}

Fields

header: Headercar_motion_data: Vec<CarMotionData>suspension_position: WheelValue<f32>suspension_velocity: WheelValue<f32>suspension_acceleration: WheelValue<f32>wheel_speed: WheelValue<f32>wheel_slip: WheelValue<f32>local_velocity: Coordinates<f32>angular_velocity: Coordinates<f32>angular_acceleration: Coordinates<f32>front_wheel_angle: f32

Implementations

impl Motion[src]

Trait Implementations

impl BinRead for Motion[src]

type Args = ()

The type of arguments needed to be supplied in order to read this type, usually a tuple. Read more

impl Debug for Motion[src]

Auto Trait Implementations

impl RefUnwindSafe for Motion

impl Send for Motion

impl Sync for Motion

impl Unpin for Motion

impl UnwindSafe for Motion

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, 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.