[][src]Struct f1_telemetry_client::f1_2020::event::Penalty

pub struct Penalty {
    pub penalty_type: PenaltyType,
    pub infringement_type: InfringementType,
    pub vehicle_index: u8,
    pub other_vehicle_index: u8,
    pub time: Duration,
    pub lap_num: u8,
    pub places_gained: u8,
}

Fields

penalty_type: PenaltyTypeinfringement_type: InfringementTypevehicle_index: u8

Vehicle index of the car the penalty is applied to

other_vehicle_index: u8

Vehicle index of the other car involved

time: Duration

Time gained, or time spent doing action in seconds

lap_num: u8

Lap the penalty occured on

places_gained: u8

Number of places gained by this

Trait Implementations

impl Clone for Penalty[src]

impl Copy for Penalty[src]

impl Debug for Penalty[src]

impl Eq for Penalty[src]

impl PartialEq<Penalty> for Penalty[src]

impl StructuralEq for Penalty[src]

impl StructuralPartialEq for Penalty[src]

Auto Trait Implementations

impl RefUnwindSafe for Penalty

impl Send for Penalty

impl Sync for Penalty

impl Unpin for Penalty

impl UnwindSafe for Penalty

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.