pub struct TriggerEffectItem {
pub affects_target: bool,
pub damage_type_filters: DamageTypeFilters,
pub probability: f32,
pub repeat_count: u16,
pub repeat_count_deviation: u16,
pub show_in_tooltip: bool,
pub type: TriggerEffectItemType,
}Fields§
§affects_target: bool§damage_type_filters: DamageTypeFilters§probability: f32§repeat_count: u16§repeat_count_deviation: u16§show_in_tooltip: bool§type: TriggerEffectItemTypeTrait Implementations§
Source§impl Clone for TriggerEffectItem
impl Clone for TriggerEffectItem
Source§fn clone(&self) -> TriggerEffectItem
fn clone(&self) -> TriggerEffectItem
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for TriggerEffectItem
Source§impl Debug for TriggerEffectItem
impl Debug for TriggerEffectItem
Source§impl Default for TriggerEffectItem
impl Default for TriggerEffectItem
Source§fn default() -> TriggerEffectItem
fn default() -> TriggerEffectItem
Returns the “default value” for a type. Read more
Source§impl PartialEq for TriggerEffectItem
impl PartialEq for TriggerEffectItem
impl StructuralPartialEq for TriggerEffectItem
Auto Trait Implementations§
impl Freeze for TriggerEffectItem
impl RefUnwindSafe for TriggerEffectItem
impl Send for TriggerEffectItem
impl Sync for TriggerEffectItem
impl Unpin for TriggerEffectItem
impl UnsafeUnpin for TriggerEffectItem
impl UnwindSafe for TriggerEffectItem
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