pub struct Spells {
pub spell: i32,
pub spell_trigger: SpellTriggerType,
pub spell_charges: i32,
pub spell_ppm_rate: f32,
pub spell_cooldown: i32,
pub spell_category: i32,
pub spell_category_cooldown: i32,
}Available on crate feature
vanilla only.Fields§
§spell: i32§spell_trigger: SpellTriggerType§spell_charges: i32§spell_ppm_rate: f32§spell_cooldown: i32§spell_category: i32§spell_category_cooldown: i32Implementations§
Trait Implementations§
impl Copy for Spells
Auto Trait Implementations§
impl Freeze for Spells
impl RefUnwindSafe for Spells
impl Send for Spells
impl Sync for Spells
impl Unpin for Spells
impl UnwindSafe for Spells
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