[][src]Struct sc2_techtree::TechData

pub struct TechData {
    pub abilities: Vec<Ability>,
    pub unittypes: Vec<UnitType>,
    pub upgrades: Vec<Upgrade>,
}

All tech data

Fields

abilities: Vec<Ability>

All abilities

unittypes: Vec<UnitType>

All unit types

upgrades: Vec<Upgrade>

All upgrades

Methods

impl TechData[src]

pub fn current() -> Self[src]

Use the version of the data bundled into this libarary

pub fn from_json(source: &str) -> Result<Self, DeserializeError>[src]

Load data from a json string

pub fn ability(&self, ability_id: AbilityId) -> Option<Ability>[src]

Get an ability by id

pub fn upgrade(&self, upgrade_id: UpgradeId) -> Option<Upgrade>[src]

Get an upgrade by id

pub fn unittype(&self, unittype_id: UnitTypeId) -> Option<UnitType>[src]

Get a unit type by id

pub fn upgrade_ability(
    &self,
    upgrade_id: UpgradeId
) -> Result<Ability, QueryError>
[src]

Ability that researches an upgrade

Trait Implementations

impl Eq for TechData[src]

impl PartialEq<TechData> for TechData[src]

impl Clone for TechData[src]

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

Performs copy-assignment from source. Read more

impl Debug for TechData[src]

impl Serialize for TechData[src]

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

Auto Trait Implementations

impl Send for TechData

impl Sync for TechData

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 = !

🔬 This is a nightly-only experimental API. (try_from)

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]