[][src]Enum genie_scx::StartingAge

pub enum StartingAge {
    Default,
    Nomad,
    DarkAge,
    FeudalAge,
    CastleAge,
    ImperialAge,
    PostImperialAge,
}

The starting age.

Variants

Default

Use the game default.

Nomad

Start in the Dark Age with Nomad resources.

DarkAge

Start in the Dark Age.

FeudalAge

Start in the Feudal Age.

CastleAge

Start in the Castle Age.

ImperialAge

Start in the Imperial Age.

PostImperialAge

Start in the Imperial Age with all technologies researched.

Implementations

impl StartingAge[src]

pub fn try_from(n: i32, version: f32) -> Result<Self, ParseStartingAgeError>[src]

Convert a starting age number to the appropriate enum for a particular data version.

pub fn to_i32(self, version: f32) -> i32[src]

Serialize the age identifier to an integer that is understood by the given game version.

Trait Implementations

impl Clone for StartingAge[src]

impl Copy for StartingAge[src]

impl Debug for StartingAge[src]

impl Eq for StartingAge[src]

impl PartialEq<StartingAge> for StartingAge[src]

impl StructuralEq for StartingAge[src]

impl StructuralPartialEq for StartingAge[src]

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> 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.