pub enum VisualTyreCompound {
Show 16 variants
ClassicDry,
ClassicWet,
F1HyperSoft,
F1UltraSoft,
F1SuperSoft,
F1Soft,
F1Medium,
F1Hard,
F1SuperHard,
F1Intermediate,
F1Wet,
F2SuperSoft,
F2Soft,
F2Medium,
F2Hard,
F2Wet,
}
Expand description
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§
Source§impl Clone for VisualTyreCompound
impl Clone for VisualTyreCompound
Source§fn clone(&self) -> VisualTyreCompound
fn clone(&self) -> VisualTyreCompound
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for VisualTyreCompound
impl Debug for VisualTyreCompound
Source§impl Default for VisualTyreCompound
impl Default for VisualTyreCompound
Source§impl Hash for VisualTyreCompound
impl Hash for VisualTyreCompound
Source§impl Ord for VisualTyreCompound
impl Ord for VisualTyreCompound
Source§fn cmp(&self, other: &VisualTyreCompound) -> Ordering
fn cmp(&self, other: &VisualTyreCompound) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for VisualTyreCompound
impl PartialEq for VisualTyreCompound
Source§impl PartialOrd for VisualTyreCompound
impl PartialOrd for VisualTyreCompound
impl Copy for VisualTyreCompound
impl Eq for VisualTyreCompound
impl StructuralPartialEq for VisualTyreCompound
Auto Trait Implementations§
impl Freeze for VisualTyreCompound
impl RefUnwindSafe for VisualTyreCompound
impl Send for VisualTyreCompound
impl Sync for VisualTyreCompound
impl Unpin for VisualTyreCompound
impl UnwindSafe for VisualTyreCompound
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more