pub struct DamageObservation {
pub spell_id: u32,
pub amount: f64,
pub flags: DamageEventFlags,
}Expand description
Damage payload independent of encounter time and scope.
Fields§
§spell_id: u32§amount: f64§flags: DamageEventFlagsTrait Implementations§
Source§impl Clone for DamageObservation
impl Clone for DamageObservation
Source§fn clone(&self) -> DamageObservation
fn clone(&self) -> DamageObservation
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 DamageObservation
impl Debug for DamageObservation
Source§impl PartialEq for DamageObservation
impl PartialEq for DamageObservation
impl Copy for DamageObservation
impl StructuralPartialEq for DamageObservation
Auto Trait Implementations§
impl Freeze for DamageObservation
impl RefUnwindSafe for DamageObservation
impl Send for DamageObservation
impl Sync for DamageObservation
impl Unpin for DamageObservation
impl UnsafeUnpin for DamageObservation
impl UnwindSafe for DamageObservation
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