pub enum ApiSpec {
Nineteen,
}
Expand description
Supported API specifications
The modern F1 games have their own API specifications, each an evolution of the previous one. Since the data published by each game is unique in one way or another, support for additional API specs has to be implemented manually.
Variants§
Nineteen
Trait Implementations§
Source§impl Ord for ApiSpec
impl Ord for ApiSpec
Source§impl PartialOrd for ApiSpec
impl PartialOrd for ApiSpec
impl Copy for ApiSpec
impl Eq for ApiSpec
impl StructuralPartialEq for ApiSpec
Auto Trait Implementations§
impl Freeze for ApiSpec
impl RefUnwindSafe for ApiSpec
impl Send for ApiSpec
impl Sync for ApiSpec
impl Unpin for ApiSpec
impl UnwindSafe for ApiSpec
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