#[non_exhaustive]pub enum GameType {
Oblivion,
Skyrim,
SkyrimSE,
SkyrimVR,
Fallout3,
FalloutNV,
Fallout4,
Fallout4VR,
Morrowind,
Starfield,
OpenMW,
}Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Oblivion
Skyrim
SkyrimSE
SkyrimVR
Fallout3
FalloutNV
Fallout4
Fallout4VR
Morrowind
Starfield
OpenMW
Trait Implementations§
Source§impl Ord for GameType
impl Ord for GameType
Source§impl PartialOrd for GameType
impl PartialOrd for GameType
impl Copy for GameType
impl Eq for GameType
impl StructuralPartialEq for GameType
Auto Trait Implementations§
impl Freeze for GameType
impl RefUnwindSafe for GameType
impl Send for GameType
impl Sync for GameType
impl Unpin for GameType
impl UnwindSafe for GameType
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