pub struct ComboSystem {
pub combos: Vec<Combo>,
pub recent_skills: Vec<SkillId>,
pub last_skill_time: f32,
pub current_time: f32,
pub max_history: usize,
}Fields§
§combos: Vec<Combo>§recent_skills: Vec<SkillId>§last_skill_time: f32§current_time: f32§max_history: usizeImplementations§
Trait Implementations§
Source§impl Clone for ComboSystem
impl Clone for ComboSystem
Source§fn clone(&self) -> ComboSystem
fn clone(&self) -> ComboSystem
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ComboSystem
impl Debug for ComboSystem
Auto Trait Implementations§
impl Freeze for ComboSystem
impl RefUnwindSafe for ComboSystem
impl Send for ComboSystem
impl Sync for ComboSystem
impl Unpin for ComboSystem
impl UnsafeUnpin for ComboSystem
impl UnwindSafe for ComboSystem
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