Struct rpgstat::stats::Advanced [−][src]
pub struct Advanced<T: Copy + Default + AddAssign + Add<Output = T> + Div<Output = T> + DivAssign + Mul<Output = T> + MulAssign + Neg<Output = T> + Rem<Output = T> + RemAssign + Sub<Output = T> + SubAssign + PartialOrd + NumCast> {Show 22 fields
pub id: T,
pub xp: T,
pub hp: T,
pub mp: T,
pub xp_next: T,
pub hp_max: T,
pub mp_max: T,
pub level: T,
pub speed: T,
pub gp: T,
pub atk: T,
pub def: T,
pub m_atk: T,
pub m_def: T,
pub agility: T,
pub strength: T,
pub dexterity: T,
pub constitution: T,
pub intelligence: T,
pub charisma: T,
pub wisdom: T,
pub age: T,
}Fields
id: TIdentification Number
xp: TExperience Points
hp: THealth Points
mp: TMana Points
xp_next: TExperience Points multiplier for next level
hp_max: TMax Health Points
mp_max: TMax Mana Points
level: TCurrent Level
speed: TThe speed
gp: Tyour currency points
atk: TAttack
def: TDefense
m_atk: TMana Attack
m_def: TMana Defense
agility: TThe agility Points
strength: Tdexterity: TThe dexterity Points
constitution: TThe constitution Points
intelligence: TThe intelligence Points
charisma: TThe charisma Points
wisdom: TThe wisdom Points
age: TThe current age
Implementations
Trait Implementations
Auto Trait Implementations
impl<T> RefUnwindSafe for Advanced<T> where
T: RefUnwindSafe,
impl<T> UnwindSafe for Advanced<T> where
T: UnwindSafe,
Blanket Implementations
Mutably borrows from an owned value. Read more