pub enum MapType {
BlueHome,
Center,
EdgeOfTheMists,
GreenHome,
Instance,
JumpPuzzle,
Public,
Pvp,
RedHome,
Tutorial,
Unknown,
}
Variants§
BlueHome
The blue home borderlands in WvW.
Center
The center map in WvW (Eternal Battlegrounds).
EdgeOfTheMists
The Edge of the Mists map in WvW.
GreenHome
The green home borderlands in WvW.
Instance
An instanced map.
JumpPuzzle
At present only a WvW map that houses a jumping puzzle (Obsidian Sanctum).
Public
Open world map.
Pvp
PvP or activity map.
RedHome
The red home borderlands in WvW.
Tutorial
The tutorial missions for newly created characters.
Unknown
Trait Implementations§
Source§impl<'de> Deserialize<'de> for MapType
impl<'de> Deserialize<'de> for MapType
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
Source§impl PartialOrd for MapType
impl PartialOrd for MapType
impl Eq for MapType
impl StructuralPartialEq for MapType
Auto Trait Implementations§
impl Freeze for MapType
impl RefUnwindSafe for MapType
impl Send for MapType
impl Sync for MapType
impl Unpin for MapType
impl UnwindSafe for MapType
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> 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