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

pub enum VisualTyreCompound {
    ClassicDry,
    ClassicWet,
    F1HyperSoft,
    F1UltraSoft,
    F1SuperSoft,
    F1Soft,
    F1Medium,
    F1Hard,
    F1SuperHard,
    F1Intermediate,
    F1Wet,
    F2SuperSoft,
    F2Soft,
    F2Medium,
    F2Hard,
    F2Wet,
}

Tyre compounds that influence the visual appearance

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
F1HyperSoft
F1UltraSoft
F1SuperSoft
F1Soft
F1Medium
F1Hard
F1SuperHard
F1Intermediate
F1Wet
F2SuperSoft
F2Soft
F2Medium
F2Hard
F2Wet

Trait Implementations

impl Clone for VisualTyreCompound[src]

impl Copy for VisualTyreCompound[src]

impl Debug for VisualTyreCompound[src]

impl Default for VisualTyreCompound[src]

impl Eq for VisualTyreCompound[src]

impl Hash for VisualTyreCompound[src]

impl Ord for VisualTyreCompound[src]

impl PartialEq<VisualTyreCompound> for VisualTyreCompound[src]

impl PartialOrd<VisualTyreCompound> for VisualTyreCompound[src]

impl StructuralEq for VisualTyreCompound[src]

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