pub struct ItemBudget {
pub item_level: i32,
pub stat: f64,
pub rating: f64,
}Expand description
Item-level stat budgets for buffs with attribute 354.
Fields§
§item_level: i32Effective item level used to select DBC effect-scaling columns.
stat: f64§rating: f64Budget for rating effects (scaling class -7): stat * CombatRatingsMultByIlvl(slot, ilvl).
Trait Implementations§
Source§impl Clone for ItemBudget
impl Clone for ItemBudget
Source§fn clone(&self) -> ItemBudget
fn clone(&self) -> ItemBudget
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 ItemBudget
impl Debug for ItemBudget
Source§impl Default for ItemBudget
impl Default for ItemBudget
Source§fn default() -> ItemBudget
fn default() -> ItemBudget
Returns the “default value” for a type. Read more
Source§impl PartialEq for ItemBudget
impl PartialEq for ItemBudget
impl Copy for ItemBudget
impl StructuralPartialEq for ItemBudget
Auto Trait Implementations§
impl Freeze for ItemBudget
impl RefUnwindSafe for ItemBudget
impl Send for ItemBudget
impl Sync for ItemBudget
impl Unpin for ItemBudget
impl UnsafeUnpin for ItemBudget
impl UnwindSafe for ItemBudget
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