Struct entmet_lib::entities::entity::AreaEffectCloud
source · pub struct AreaEffectCloud {
pub radius: f32,
pub color: i32,
pub ignore_radius: bool,
pub particle: ParticleType,
/* private fields */
}Expand description
An instance of an area effect cloud
Fields§
§radius: f32The radius of the effect
color: i32The color of the effect
ignore_radius: boolWhether the radius should be ignored or not
particle: ParticleTypeThe particle type of the area of effect
Trait Implementations§
source§impl Default for AreaEffectCloud
impl Default for AreaEffectCloud
source§impl Deref for AreaEffectCloud
impl Deref for AreaEffectCloud
source§impl DerefMut for AreaEffectCloud
impl DerefMut for AreaEffectCloud
source§impl PartialEq for AreaEffectCloud
impl PartialEq for AreaEffectCloud
source§fn eq(&self, other: &AreaEffectCloud) -> bool
fn eq(&self, other: &AreaEffectCloud) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for AreaEffectCloud
Auto Trait Implementations§
impl Freeze for AreaEffectCloud
impl RefUnwindSafe for AreaEffectCloud
impl Send for AreaEffectCloud
impl Sync for AreaEffectCloud
impl Unpin for AreaEffectCloud
impl UnwindSafe for AreaEffectCloud
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