pub struct GroundDropView {
pub id: String,
pub template_id: String,
pub quantity: u32,
pub x: f32,
pub y: f32,
pub z: f32,
}Expand description
Loot pile on the ground (AOI-filtered).
Fields§
§id: String§template_id: String§quantity: u32§x: f32§y: f32§z: f32Trait Implementations§
Source§impl Clone for GroundDropView
impl Clone for GroundDropView
Source§fn clone(&self) -> GroundDropView
fn clone(&self) -> GroundDropView
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 GroundDropView
impl Debug for GroundDropView
Source§impl<'de> Deserialize<'de> for GroundDropView
impl<'de> Deserialize<'de> for GroundDropView
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 GroundDropView
impl PartialEq for GroundDropView
Source§impl Serialize for GroundDropView
impl Serialize for GroundDropView
impl StructuralPartialEq for GroundDropView
Auto Trait Implementations§
impl Freeze for GroundDropView
impl RefUnwindSafe for GroundDropView
impl Send for GroundDropView
impl Sync for GroundDropView
impl Unpin for GroundDropView
impl UnsafeUnpin for GroundDropView
impl UnwindSafe for GroundDropView
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