pub struct ConsumableSpells {
pub potion: Option<ConsumableBuff>,
pub flask: Option<ConsumableBuff>,
pub food: Option<FoodBuff>,
pub augment_rune: Option<ConsumableBuff>,
}Expand description
Consumable buff spells selected for a sim run; None = that consumable is disabled.
Fields§
§potion: Option<ConsumableBuff>§flask: Option<ConsumableBuff>§food: Option<FoodBuff>§augment_rune: Option<ConsumableBuff>Implementations§
Trait Implementations§
Source§impl Clone for ConsumableSpells
impl Clone for ConsumableSpells
Source§fn clone(&self) -> ConsumableSpells
fn clone(&self) -> ConsumableSpells
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 ConsumableSpells
impl Debug for ConsumableSpells
Source§impl Default for ConsumableSpells
impl Default for ConsumableSpells
Source§fn default() -> ConsumableSpells
fn default() -> ConsumableSpells
Returns the “default value” for a type. Read more
Source§impl PartialEq for ConsumableSpells
impl PartialEq for ConsumableSpells
impl StructuralPartialEq for ConsumableSpells
Auto Trait Implementations§
impl Freeze for ConsumableSpells
impl RefUnwindSafe for ConsumableSpells
impl Send for ConsumableSpells
impl Sync for ConsumableSpells
impl Unpin for ConsumableSpells
impl UnsafeUnpin for ConsumableSpells
impl UnwindSafe for ConsumableSpells
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