pub struct Growth {
pub agility: u8,
pub intelligence: u8,
pub max_level: u8,
pub attack: u8,
pub defense: u8,
pub mp: u8,
pub exp: u8,
pub hp: u8,
}Expand description
Monster growth data
Fields§
§agility: u8§intelligence: u8§max_level: u8§attack: u8§defense: u8§mp: u8§exp: u8§hp: u8Trait Implementations§
Auto Trait Implementations§
impl Freeze for Growth
impl RefUnwindSafe for Growth
impl Send for Growth
impl Sync for Growth
impl Unpin for Growth
impl UnwindSafe for Growth
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more