pub struct TriggerPayload {
pub sp_coef: f64,
pub ap_coef: f64,
pub base_points: f64,
pub amplitude: f64,
pub coefficient: f64,
pub power_coefficient_mastery_add: f64,
}Expand description
Spell-power/attack-power coefficient bundle extracted from a damage effect.
Fields§
§sp_coef: f64§ap_coef: f64§base_points: f64§amplitude: f64§coefficient: f64§power_coefficient_mastery_add: f64Implementations§
Source§impl TriggerPayload
impl TriggerPayload
pub fn from_effect(effect: &SpellEffect) -> Self
Sourcepub fn has_no_coef(&self) -> bool
pub fn has_no_coef(&self) -> bool
Whether neither coefficient carries a value (DBC zero-as-absent).
Trait Implementations§
Source§impl Clone for TriggerPayload
impl Clone for TriggerPayload
Source§fn clone(&self) -> TriggerPayload
fn clone(&self) -> TriggerPayload
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 TriggerPayload
impl Debug for TriggerPayload
Source§impl Default for TriggerPayload
impl Default for TriggerPayload
Source§fn default() -> TriggerPayload
fn default() -> TriggerPayload
Returns the “default value” for a type. Read more
impl Copy for TriggerPayload
Auto Trait Implementations§
impl Freeze for TriggerPayload
impl RefUnwindSafe for TriggerPayload
impl Send for TriggerPayload
impl Sync for TriggerPayload
impl Unpin for TriggerPayload
impl UnsafeUnpin for TriggerPayload
impl UnwindSafe for TriggerPayload
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