pub struct MassModuleStoreEvent {
pub market_id: u64,
pub ship: ShipType,
pub ship_id: u64,
pub items: Vec<MassModuleStoreEventItem>,
}
Expand description
Fired when storing multiple modules at the current location at once.
Fields§
§market_id: u64
The market id where the modules are getting stored.
ship: ShipType
The type of ship where the modules are getting stored from.
ship_id: u64
The id of the ship the modules are getting stored from.
items: Vec<MassModuleStoreEventItem>
List of modules which have been stored.
Trait Implementations§
Source§impl Clone for MassModuleStoreEvent
impl Clone for MassModuleStoreEvent
Source§fn clone(&self) -> MassModuleStoreEvent
fn clone(&self) -> MassModuleStoreEvent
Returns a copy of the value. Read more
1.0.0 · 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 MassModuleStoreEvent
impl Debug for MassModuleStoreEvent
Source§impl<'de> Deserialize<'de> for MassModuleStoreEvent
impl<'de> Deserialize<'de> for MassModuleStoreEvent
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 MassModuleStoreEvent
impl PartialEq for MassModuleStoreEvent
Source§impl Serialize for MassModuleStoreEvent
impl Serialize for MassModuleStoreEvent
impl StructuralPartialEq for MassModuleStoreEvent
Auto Trait Implementations§
impl Freeze for MassModuleStoreEvent
impl RefUnwindSafe for MassModuleStoreEvent
impl Send for MassModuleStoreEvent
impl Sync for MassModuleStoreEvent
impl Unpin for MassModuleStoreEvent
impl UnwindSafe for MassModuleStoreEvent
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