#[repr(i8)]pub enum Track {
Show 32 variants
Unknown = -1,
Melbourne = 0,
PaulRicard = 1,
Shanghai = 2,
Sakhir = 3,
Catalunya = 4,
Monaco = 5,
Montreal = 6,
Silverstone = 7,
Hockenheim = 8,
Hungaroring = 9,
Spa = 10,
Monza = 11,
Singapore = 12,
Suzuka = 13,
AbuDahbi = 14,
Texas = 15,
Brazil = 16,
Austria = 17,
Sochi = 18,
Mexico = 19,
Baku = 20,
SakhirShort = 21,
SilverstoneShort = 22,
TexasShort = 23,
SuzukaShort = 24,
Hanoi = 25,
Zandvoort = 26,
Imola = 27,
Portimao = 28,
Jeddah = 29,
Miami = 30,
}Variants§
Unknown = -1
Melbourne = 0
PaulRicard = 1
Shanghai = 2
Sakhir = 3
Catalunya = 4
Monaco = 5
Montreal = 6
Silverstone = 7
Hockenheim = 8
Hungaroring = 9
Spa = 10
Monza = 11
Singapore = 12
Suzuka = 13
AbuDahbi = 14
Texas = 15
Brazil = 16
Austria = 17
Sochi = 18
Mexico = 19
Baku = 20
SakhirShort = 21
SilverstoneShort = 22
TexasShort = 23
SuzukaShort = 24
Hanoi = 25
Zandvoort = 26
Imola = 27
Portimao = 28
Jeddah = 29
Miami = 30
Trait Implementations§
Source§impl BinRead for Track
impl BinRead for Track
Source§type Args = ()
type Args = ()
The type of arguments needed to be supplied in order to read this type, usually a tuple. Read more
Source§fn read_options<R: Read + Seek>(
reader: &mut R,
options: &ReadOptions,
args: Self::Args,
) -> BinResult<Self>
fn read_options<R: Read + Seek>( reader: &mut R, options: &ReadOptions, args: Self::Args, ) -> BinResult<Self>
Read the type from the reader
Source§fn read<R>(reader: &mut R) -> Result<Self, Error>
fn read<R>(reader: &mut R) -> Result<Self, Error>
Read the type from the reader while assuming no arguments have been passed Read more
Source§fn read_args<R>(reader: &mut R, args: Self::Args) -> Result<Self, Error>
fn read_args<R>(reader: &mut R, args: Self::Args) -> Result<Self, Error>
Read the type from the reader using the specified arguments
fn after_parse<R>( &mut self, _: &mut R, _: &ReadOptions, _: Self::Args, ) -> Result<(), Error>
Auto Trait Implementations§
impl Freeze for Track
impl RefUnwindSafe for Track
impl Send for Track
impl Sync for Track
impl Unpin for Track
impl UnwindSafe for Track
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