pub struct GroundHazardView {
pub x: f32,
pub y: f32,
pub z: f32,
pub radius_m: f32,
pub expires_at_tick: u64,
pub damage_type: String,
}Expand description
Lingering ground hazard (boss leave_hazard puddle) visible until expires_at_tick.
Fields§
§x: f32§y: f32§z: f32§radius_m: f32§expires_at_tick: u64§damage_type: StringTrait Implementations§
Source§impl Clone for GroundHazardView
impl Clone for GroundHazardView
Source§fn clone(&self) -> GroundHazardView
fn clone(&self) -> GroundHazardView
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 moreSource§impl Debug for GroundHazardView
impl Debug for GroundHazardView
Source§impl<'de> Deserialize<'de> for GroundHazardView
impl<'de> Deserialize<'de> for GroundHazardView
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for GroundHazardView
impl PartialEq for GroundHazardView
Source§impl Serialize for GroundHazardView
impl Serialize for GroundHazardView
impl StructuralPartialEq for GroundHazardView
Auto Trait Implementations§
impl Freeze for GroundHazardView
impl RefUnwindSafe for GroundHazardView
impl Send for GroundHazardView
impl Sync for GroundHazardView
impl Unpin for GroundHazardView
impl UnsafeUnpin for GroundHazardView
impl UnwindSafe for GroundHazardView
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