pub struct OutfittingEvent {
pub market_id: u64,
pub station_name: String,
pub star_system: String,
}
Expand description
Emitted when opening the outfitting menu. The contents of the outfitting menu are written to a
separate file called Outfitting.json
in the journal directory.
Fields§
§market_id: u64
The market id the player is currently at.
station_name: String
The name of the station the player is currently docked at and opened the outfitting menu at.
star_system: String
The name of the star system the player is currently in.
Trait Implementations§
Source§impl Clone for OutfittingEvent
impl Clone for OutfittingEvent
Source§fn clone(&self) -> OutfittingEvent
fn clone(&self) -> OutfittingEvent
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 OutfittingEvent
impl Debug for OutfittingEvent
Source§impl<'de> Deserialize<'de> for OutfittingEvent
impl<'de> Deserialize<'de> for OutfittingEvent
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 OutfittingEvent
impl PartialEq for OutfittingEvent
Source§impl Serialize for OutfittingEvent
impl Serialize for OutfittingEvent
impl StructuralPartialEq for OutfittingEvent
Auto Trait Implementations§
impl Freeze for OutfittingEvent
impl RefUnwindSafe for OutfittingEvent
impl Send for OutfittingEvent
impl Sync for OutfittingEvent
impl Unpin for OutfittingEvent
impl UnwindSafe for OutfittingEvent
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