[][src]Enum genie_dat::TechTreeStatus

pub enum TechTreeStatus {
    None,
    AvailablePlayer,
    NotAvailablePlayer,
    Researching,
    ResearchedCompleted,
    AvailableTeam {
        civilization_id: CivilizationID,
    },
}

Variants

None
AvailablePlayer

This building/unit/technology is available to the player.

NotAvailablePlayer

This building/unit/technology is not available to the player.

Researching

Researching or constructing or creating.

ResearchedCompleted

Researched or built.

AvailableTeam

This building/unit/technology is available to the player if someone on their team is this civilization.

Fields of AvailableTeam

civilization_id: CivilizationID

Trait Implementations

impl Clone for TechTreeStatus[src]

impl Copy for TechTreeStatus[src]

impl Debug for TechTreeStatus[src]

impl Default for TechTreeStatus[src]

impl Eq for TechTreeStatus[src]

impl From<TechTreeStatus> for u8[src]

impl PartialEq<TechTreeStatus> for TechTreeStatus[src]

impl StructuralEq for TechTreeStatus[src]

impl StructuralPartialEq for TechTreeStatus[src]

impl TryFrom<u8> for TechTreeStatus[src]

type Error = ParseTechTreeStatusError

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