pub enum FuelMix {
Lean,
Standard,
Rich,
Max,
}
Expand description
Fuel mix settings
F1 cars can run on different fuel mixes, and drivers are often required to change the fuel mix during a race to save fuel or prevent the engine from overheating.
Variants§
Lean
The engine runs on a lean fuel mix.
Standard
The engine runs on the standard fuel mix.
Rich
The engine runs on a rich fuel mix.
Max
The engine runs on the richest fuel mix.
Trait Implementations§
Source§impl Ord for FuelMix
impl Ord for FuelMix
Source§impl PartialOrd for FuelMix
impl PartialOrd for FuelMix
impl Copy for FuelMix
impl Eq for FuelMix
impl StructuralPartialEq for FuelMix
Auto Trait Implementations§
impl Freeze for FuelMix
impl RefUnwindSafe for FuelMix
impl Send for FuelMix
impl Sync for FuelMix
impl Unpin for FuelMix
impl UnwindSafe for FuelMix
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