#[non_exhaustive]pub enum GameId {
Morrowind = 1,
Oblivion = 2,
Skyrim = 3,
Fallout3 = 4,
FalloutNV = 5,
Fallout4 = 6,
SkyrimSE = 7,
Fallout4VR = 8,
SkyrimVR = 9,
Starfield = 10,
OpenMW = 11,
OblivionRemastered = 12,
}
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.
Morrowind = 1
Oblivion = 2
Skyrim = 3
Fallout3 = 4
FalloutNV = 5
Fallout4 = 6
SkyrimSE = 7
Fallout4VR = 8
SkyrimVR = 9
Starfield = 10
OpenMW = 11
OblivionRemastered = 12
Implementations§
Source§impl GameId
impl GameId
pub fn to_esplugin_id(self) -> GameId
pub fn supports_light_plugins(self) -> bool
pub fn supports_medium_plugins(self) -> bool
pub fn allow_plugin_ghosting(self) -> bool
Trait Implementations§
Source§impl Ord for GameId
impl Ord for GameId
Source§impl PartialOrd for GameId
impl PartialOrd for GameId
impl Copy for GameId
impl Eq for GameId
impl StructuralPartialEq for GameId
Auto Trait Implementations§
impl Freeze for GameId
impl RefUnwindSafe for GameId
impl Send for GameId
impl Sync for GameId
impl Unpin for GameId
impl UnwindSafe for GameId
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more