[][src]Struct index_datamanip::objects::BoostSet

pub struct BoostSet {
    pub name: String,
    pub display_name: String,
    pub group_name: String,
    pub conversion_groups: Vec<String>,
    pub powers: Vec<CString>,
    pub boost_lists: Vec<BoostList>,
    pub bonuses: Vec<BoostSetBonus>,
    pub min_level: u32,
    pub max_level: u32,
    pub store_product: String,
}

Fields

name: Stringdisplay_name: Stringgroup_name: Stringconversion_groups: Vec<String>powers: Vec<CString>boost_lists: Vec<BoostList>bonuses: Vec<BoostSetBonus>min_level: u32max_level: u32store_product: String

Trait Implementations

impl Debug for BoostSet[src]

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

impl Serialize for BoostSet[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> 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.