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

pub enum FuelMix {
    Lean,
    Standard,
    Rich,
    Max,
}

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

impl Clone for FuelMix[src]

impl Copy for FuelMix[src]

impl Debug for FuelMix[src]

impl Default for FuelMix[src]

impl Eq for FuelMix[src]

impl Hash for FuelMix[src]

impl Ord for FuelMix[src]

impl PartialEq<FuelMix> for FuelMix[src]

impl PartialOrd<FuelMix> for FuelMix[src]

impl StructuralEq for FuelMix[src]

impl StructuralPartialEq for FuelMix[src]

Auto Trait Implementations

impl RefUnwindSafe for FuelMix

impl Send for FuelMix

impl Sync for FuelMix

impl Unpin for FuelMix

impl UnwindSafe for FuelMix

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.