[][src]Enum gbx_header::gbx::MapClass

#[repr(u32)]pub enum MapClass {
    CGameCtnChallenge,
    CGameCtnCollectorList,
    CGameCtnChallengeParameters,
    CGameCtnBlockSkin,
    CGameWaypointSpecialProperty,
    CGameCtnReplayRecord,
    CGameGhost,
    CGameCtnGhost,
    CGameCtnCollector,
    CGameCtnObjectInfo,
    CGameCtnDecoration,
    CGameCtnCollection,
    CGameSkin,
    CGamePlayerProfile,
    CMwNod,
}

IDs and names taken from wiki.xaseco.org.

Variants

CGameCtnChallenge
CGameCtnCollectorList
CGameCtnChallengeParameters
CGameCtnBlockSkin
CGameWaypointSpecialProperty
CGameCtnReplayRecord
CGameGhost
CGameCtnGhost
CGameCtnCollector
CGameCtnObjectInfo
CGameCtnDecoration
CGameCtnCollection
CGameSkin
CGamePlayerProfile
CMwNod

Implementations

impl MapClass[src]

pub fn repr(&self) -> u32[src]

pub fn from_repr(x: u32) -> Option<MapClass>[src]

Trait Implementations

impl Debug for MapClass[src]

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

impl Serialize for MapClass[src]

impl TryFrom<u32> for MapClass[src]

type Error = ()

The type returned in the event of a conversion error.

Auto Trait Implementations

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<T> From<T> for T[src]

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

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.