pub struct DamageEventFlags {
pub is_crit: bool,
pub is_periodic: bool,
pub is_pet: bool,
}Expand description
Classification flags carried by a damage observation.
Fields§
§is_crit: bool§is_periodic: bool§is_pet: boolImplementations§
Trait Implementations§
Source§impl Clone for DamageEventFlags
impl Clone for DamageEventFlags
Source§fn clone(&self) -> DamageEventFlags
fn clone(&self) -> DamageEventFlags
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 DamageEventFlags
impl Debug for DamageEventFlags
Source§impl Default for DamageEventFlags
impl Default for DamageEventFlags
Source§fn default() -> DamageEventFlags
fn default() -> DamageEventFlags
Returns the “default value” for a type. Read more
Source§impl PartialEq for DamageEventFlags
impl PartialEq for DamageEventFlags
impl Copy for DamageEventFlags
impl Eq for DamageEventFlags
impl StructuralPartialEq for DamageEventFlags
Auto Trait Implementations§
impl Freeze for DamageEventFlags
impl RefUnwindSafe for DamageEventFlags
impl Send for DamageEventFlags
impl Sync for DamageEventFlags
impl Unpin for DamageEventFlags
impl UnsafeUnpin for DamageEventFlags
impl UnwindSafe for DamageEventFlags
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