pub enum PhysicalTyreCompound {
Show 21 variants
ClassicDry,
ClassicWet,
F1C1,
F1C2,
F1C3,
F1C4,
F1C5,
F1HyperSoft,
F1UltraSoft,
F1SuperSoft,
F1Soft,
F1Medium,
F1Hard,
F1SuperHard,
F1Intermediate,
F1Wet,
F2SuperSoft,
F2Soft,
F2Medium,
F2Hard,
F2Wet,
}Expand description
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§
Source§impl Clone for PhysicalTyreCompound
impl Clone for PhysicalTyreCompound
Source§fn clone(&self) -> PhysicalTyreCompound
fn clone(&self) -> PhysicalTyreCompound
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 PhysicalTyreCompound
impl Debug for PhysicalTyreCompound
Source§impl Default for PhysicalTyreCompound
impl Default for PhysicalTyreCompound
Source§impl Hash for PhysicalTyreCompound
impl Hash for PhysicalTyreCompound
Source§impl Ord for PhysicalTyreCompound
impl Ord for PhysicalTyreCompound
Source§fn cmp(&self, other: &PhysicalTyreCompound) -> Ordering
fn cmp(&self, other: &PhysicalTyreCompound) -> 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 PhysicalTyreCompound
impl PartialEq for PhysicalTyreCompound
Source§impl PartialOrd for PhysicalTyreCompound
impl PartialOrd for PhysicalTyreCompound
impl Copy for PhysicalTyreCompound
impl Eq for PhysicalTyreCompound
impl StructuralPartialEq for PhysicalTyreCompound
Auto Trait Implementations§
impl Freeze for PhysicalTyreCompound
impl RefUnwindSafe for PhysicalTyreCompound
impl Send for PhysicalTyreCompound
impl Sync for PhysicalTyreCompound
impl Unpin for PhysicalTyreCompound
impl UnwindSafe for PhysicalTyreCompound
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