[][src]Enum riven::consts::Map

#[non_exhaustive]#[repr(u8)]pub enum Map {
    SUMMONERS_RIFT_ORIGINAL_SUMMER_VARIANT,
    SUMMONERS_RIFT_ORIGINAL_AUTUMN_VARIANT,
    SUMMONERS_RIFT,
    THE_PROVING_GROUNDS,
    TWISTED_TREELINE_ORIGINAL_VERSION,
    TWISTED_TREELINE,
    THE_CRYSTAL_SCAR,
    HOWLING_ABYSS,
    BUTCHERS_BRIDGE,
    COSMIC_RUINS,
    VALORAN_CITY_PARK,
    SUBSTRUCTURE43,
    CRASH_SITE,
    NEXUS_BLITZ,
}

League of Legends maps.

Variants (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.
SUMMONERS_RIFT_ORIGINAL_SUMMER_VARIANT

Summoner's Rift
Original Summer variant

SUMMONERS_RIFT_ORIGINAL_AUTUMN_VARIANT

Summoner's Rift
Original Autumn variant

SUMMONERS_RIFT

Summoner's Rift
Current Version

THE_PROVING_GROUNDS

The Proving Grounds
Tutorial Map

TWISTED_TREELINE_ORIGINAL_VERSION

Twisted Treeline
Original Version

TWISTED_TREELINE

Twisted Treeline
Last TT map

THE_CRYSTAL_SCAR

The Crystal Scar
Dominion map

HOWLING_ABYSS

Howling Abyss
ARAM map

BUTCHERS_BRIDGE

Butcher's Bridge
Alternate ARAM map

COSMIC_RUINS

Cosmic Ruins
Dark Star: Singularity map

VALORAN_CITY_PARK

Valoran City Park
Star Guardian Invasion map

SUBSTRUCTURE43

Substructure 43
PROJECT: Hunters map

CRASH_SITE

Crash Site
Odyssey: Extraction map

NEXUS_BLITZ

Nexus Blitz
Nexus Blitz map

Trait Implementations

impl Clone for Map[src]

impl Copy for Map[src]

impl Debug for Map[src]

impl<'de> Deserialize<'de> for Map[src]

impl Eq for Map[src]

impl From<Map> for u8[src]

impl Hash for Map[src]

impl Ord for Map[src]

impl PartialEq<Map> for Map[src]

impl PartialOrd<Map> for Map[src]

impl Serialize for Map[src]

impl StructuralEq for Map[src]

impl StructuralPartialEq for Map[src]

impl TryFrom<u8> for Map[src]

type Error = TryFromPrimitiveError<Self>

The type returned in the event of a conversion error.

impl TryFromPrimitive for Map[src]

type Primitive = u8

Auto Trait Implementations

impl RefUnwindSafe for Map

impl Send for Map

impl Sync for Map

impl Unpin for Map

impl UnwindSafe for Map

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.