[][src]Enum f1_api::packet::status::PhysicalTyreCompound

pub enum PhysicalTyreCompound {
    ClassicDry,
    ClassicWet,
    F1C1,
    F1C2,
    F1C3,
    F1C4,
    F1C5,
    F1HyperSoft,
    F1UltraSoft,
    F1SuperSoft,
    F1Soft,
    F1Medium,
    F1Hard,
    F1SuperHard,
    F1Intermediate,
    F1Wet,
    F2SuperSoft,
    F2Soft,
    F2Medium,
    F2Hard,
    F2Wet,
}

Tyre compounds that influence the physical simulation

The latest generations of F1 games started to distinguish between physical and visual tyre compounds to support Pirelli's system with five tyre compounds from which three are picked for a race weekend and then labeled soft, medium, and hard. The physical tyre compound describes which compound is used, while the visual tyre compound indicates if it is a soft, medium, or hard tyre.

For older games that do not know this distinction yet, the tyre compound is duplicated in both fields.

Variants

ClassicDry
ClassicWet
F1C1
F1C2
F1C3
F1C4
F1C5
F1HyperSoft
F1UltraSoft
F1SuperSoft
F1Soft
F1Medium
F1Hard
F1SuperHard
F1Intermediate
F1Wet
F2SuperSoft
F2Soft
F2Medium
F2Hard
F2Wet

Trait Implementations

impl Clone for PhysicalTyreCompound[src]

impl Copy for PhysicalTyreCompound[src]

impl Debug for PhysicalTyreCompound[src]

impl Default for PhysicalTyreCompound[src]

impl Eq for PhysicalTyreCompound[src]

impl Hash for PhysicalTyreCompound[src]

impl Ord for PhysicalTyreCompound[src]

impl PartialEq<PhysicalTyreCompound> for PhysicalTyreCompound[src]

impl PartialOrd<PhysicalTyreCompound> for PhysicalTyreCompound[src]

impl StructuralEq for PhysicalTyreCompound[src]

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