pub(crate) struct SpecialAttackConfig {
pub rage: RageSpendConfig,
pub sudden_death_driver: u32,
pub sudden_death_aura: LocalAuraIdx,
pub execute: LocalSpellIdx,
pub slayers_dominance: bool,
pub slayers_dominance_driver: u32,
pub prd_c: f64,
pub slayers_strike: u32,
pub slayers_strike_coef: f64,
pub executioner: LocalAuraIdx,
pub imminent_demise_driver: u32,
pub imminent_demise_every: i32,
}Fields§
§rage: RageSpendConfig§sudden_death_driver: u32§sudden_death_aura: LocalAuraIdx§execute: LocalSpellIdx§slayers_dominance: bool§slayers_dominance_driver: u32§prd_c: f64§slayers_strike: u32§slayers_strike_coef: f64§executioner: LocalAuraIdx§imminent_demise_driver: u32§imminent_demise_every: i32Trait Implementations§
Source§impl Clone for SpecialAttackConfig
impl Clone for SpecialAttackConfig
Source§fn clone(&self) -> SpecialAttackConfig
fn clone(&self) -> SpecialAttackConfig
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 SpecialAttackConfig
impl Debug for SpecialAttackConfig
impl Copy for SpecialAttackConfig
Auto Trait Implementations§
impl Freeze for SpecialAttackConfig
impl RefUnwindSafe for SpecialAttackConfig
impl Send for SpecialAttackConfig
impl Sync for SpecialAttackConfig
impl Unpin for SpecialAttackConfig
impl UnsafeUnpin for SpecialAttackConfig
impl UnwindSafe for SpecialAttackConfig
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