[][src]Enum genie_scx::StartingAge

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

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.

Methods

impl StartingAge[src]

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

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

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

Trait Implementations

impl Copy for StartingAge[src]

impl PartialEq<StartingAge> for StartingAge[src]

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0
[src]

This method tests for !=.

impl Clone for StartingAge[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Eq for StartingAge[src]

impl Debug for StartingAge[src]

Auto Trait Implementations

impl Send for StartingAge

impl Sync for StartingAge

Blanket Implementations

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

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

type Owned = T

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

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

The type returned in the event of a conversion error.