[][src]Struct index_datamanip::objects::Class

pub struct Class {
    pub name: String,
    pub display_name: String,
    pub display_help: String,
    pub allowed_origins: Vec<String>,
    pub special_restrictions: Vec<String>,
    pub store_requires: String,
    pub locked_tooltip: String,
    pub product_code: String,
    pub reduction_class: String,
    pub reduce_as_archvillain: bool,
    pub level_up_respecs: Vec<u32>,
    pub display_short_help: String,
    pub icon: String,
    pub primary_category: String,
    pub secondary_category: String,
    pub power_pool_category: String,
    pub epic_pool_category: String,
    pub attrib_min: Vec<CharacterAttributes>,
    pub attrib_base: Vec<CharacterAttributes>,
    pub strength_min: Vec<CharacterAttributes>,
    pub resistance_min: Vec<CharacterAttributes>,
    pub atrrib_dimin_str_in: Vec<CharacterAttributes>,
    pub atrrib_dimin_str_out: Vec<CharacterAttributes>,
    pub atrrib_dimin_cur_in: Vec<CharacterAttributes>,
    pub atrrib_dimin_cur_out: Vec<CharacterAttributes>,
    pub atrrib_dimin_res_in: Vec<CharacterAttributes>,
    pub atrrib_dimin_res_out: Vec<CharacterAttributes>,
    pub attrib_max_table: Vec<CharacterAttributesTable>,
    pub attrib_max_max_table: Vec<CharacterAttributesTable>,
    pub strength_max_table: Vec<CharacterAttributesTable>,
    pub resistance_max_table: Vec<CharacterAttributesTable>,
    pub mod_table: Vec<NamedTable>,
    pub connect_hp_and_status: bool,
}

Fields

name: Stringdisplay_name: Stringdisplay_help: Stringallowed_origins: Vec<String>special_restrictions: Vec<String>store_requires: Stringlocked_tooltip: Stringproduct_code: Stringreduction_class: Stringreduce_as_archvillain: boollevel_up_respecs: Vec<u32>display_short_help: Stringicon: Stringprimary_category: Stringsecondary_category: Stringpower_pool_category: Stringepic_pool_category: Stringattrib_min: Vec<CharacterAttributes>attrib_base: Vec<CharacterAttributes>strength_min: Vec<CharacterAttributes>resistance_min: Vec<CharacterAttributes>atrrib_dimin_str_in: Vec<CharacterAttributes>atrrib_dimin_str_out: Vec<CharacterAttributes>atrrib_dimin_cur_in: Vec<CharacterAttributes>atrrib_dimin_cur_out: Vec<CharacterAttributes>atrrib_dimin_res_in: Vec<CharacterAttributes>atrrib_dimin_res_out: Vec<CharacterAttributes>attrib_max_table: Vec<CharacterAttributesTable>attrib_max_max_table: Vec<CharacterAttributesTable>strength_max_table: Vec<CharacterAttributesTable>resistance_max_table: Vec<CharacterAttributesTable>mod_table: Vec<NamedTable>connect_hp_and_status: bool

Methods

impl Class[src]

pub fn fix_strings(&mut self, pmessages: &HashMap<String, String>)[src]

Trait Implementations

impl Debug for Class[src]

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

impl Serialize for Class[src]

Auto Trait Implementations

impl RefUnwindSafe for Class

impl Send for Class

impl Sync for Class

impl Unpin for Class

impl UnwindSafe for Class

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