pub struct OnEquipmentRemovedEvent {
pub count: u32,
pub equipment: &'static str,
pub grid: LuaEquipmentGrid,
pub name: &'static str,
pub quality: &'static str,
pub tick: u32,
}Expand description
Called after equipment is removed from an equipment grid.
Fields§
§count: u32§equipment: &'static str§grid: LuaEquipmentGrid§name: &'static str§quality: &'static str§tick: u32Trait Implementations§
Source§impl Clone for OnEquipmentRemovedEvent
impl Clone for OnEquipmentRemovedEvent
Source§fn clone(&self) -> OnEquipmentRemovedEvent
fn clone(&self) -> OnEquipmentRemovedEvent
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 OnEquipmentRemovedEvent
Source§impl Debug for OnEquipmentRemovedEvent
impl Debug for OnEquipmentRemovedEvent
Source§impl Default for OnEquipmentRemovedEvent
impl Default for OnEquipmentRemovedEvent
Source§fn default() -> OnEquipmentRemovedEvent
fn default() -> OnEquipmentRemovedEvent
Returns the “default value” for a type. Read more
Source§impl PartialEq for OnEquipmentRemovedEvent
impl PartialEq for OnEquipmentRemovedEvent
impl StructuralPartialEq for OnEquipmentRemovedEvent
Auto Trait Implementations§
impl Freeze for OnEquipmentRemovedEvent
impl RefUnwindSafe for OnEquipmentRemovedEvent
impl Send for OnEquipmentRemovedEvent
impl Sync for OnEquipmentRemovedEvent
impl Unpin for OnEquipmentRemovedEvent
impl UnsafeUnpin for OnEquipmentRemovedEvent
impl UnwindSafe for OnEquipmentRemovedEvent
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