pub struct PassiveStatMods {Show 13 fields
pub strength_mult: f64,
pub agility_mult: f64,
pub stamina_mult: f64,
pub intellect_mult: f64,
pub crit_chance: f64,
pub mastery_points: f64,
pub haste_mult: f64,
pub crit_rating_mult: f64,
pub haste_rating_mult: f64,
pub mastery_rating_mult: f64,
pub versatility_rating_mult: f64,
pub versatility_pct: f64,
pub matching_armor: MatchingArmorPassive,
}Expand description
Player-wide sheet-stat adjustments from passive auras.
Fields§
§strength_mult: f64§agility_mult: f64§stamina_mult: f64§intellect_mult: f64§crit_chance: f64§mastery_points: f64§haste_mult: f64§crit_rating_mult: f64§haste_rating_mult: f64§mastery_rating_mult: f64§versatility_rating_mult: f64§versatility_pct: f64§matching_armor: MatchingArmorPassiveTrait Implementations§
Source§impl Clone for PassiveStatMods
impl Clone for PassiveStatMods
Source§fn clone(&self) -> PassiveStatMods
fn clone(&self) -> PassiveStatMods
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 PassiveStatMods
impl Debug for PassiveStatMods
Source§impl Default for PassiveStatMods
impl Default for PassiveStatMods
impl Copy for PassiveStatMods
Auto Trait Implementations§
impl Freeze for PassiveStatMods
impl RefUnwindSafe for PassiveStatMods
impl Send for PassiveStatMods
impl Sync for PassiveStatMods
impl Unpin for PassiveStatMods
impl UnsafeUnpin for PassiveStatMods
impl UnwindSafe for PassiveStatMods
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more