pub enum MapName {
Show 16 variants
Map1,
Map2,
Map3,
Map4,
Map8,
Map10,
Map11,
Map12,
Map14,
Map16,
Map18,
Map19,
Map20,
Map21,
Map22,
Unknown,
}Variants§
Map1
Summoner’s Rift - Original Summer variant
Map2
Summoner’s Rift - Original Autumn variant
Map3
The Proving Grounds - Tutorial map
Map4
Twisted Treeline - Original Version
Map8
The Crystal Scar - Dominion map
Map10
Twisted Treeline
Map11
Summoner’s Rift - Current Version
Map12
Howling Abyss - ARAM map
Map14
Butcher’s Bridge: Alternate ARAM map
Map16
Cosmic Ruins - Dark Star: Singularity map
Map18
Valoran City Park - Star Guardian Invasion map
Map19
Substructure 43 - PROJECT: Hunters map
Map20
Crash Site - Odyssey: Extraction map
Map21
Nexus Blitz
Map22
Convergence - Teamfight Tactics map
Unknown
The riot documentation specifying the maps is incomplete => add Unknown to catch deserialization errors
Trait Implementations§
Source§impl<'de> Deserialize<'de> for MapName
impl<'de> Deserialize<'de> for MapName
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for MapName
impl RefUnwindSafe for MapName
impl Send for MapName
impl Sync for MapName
impl Unpin for MapName
impl UnwindSafe for MapName
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<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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