pub struct FCEmbarkEvent {
pub market_id: u64,
pub carrier_name: String,
pub carrier_id: String,
}
Expand description
Fired when the player embarks at a fleet carrier.
Fields§
§market_id: u64
The market id of the fleet carrier.
carrier_name: String
The name of the fleet carrier.
carrier_id: String
The id or ‘call-sign’ of the fleet carrier.
Trait Implementations§
Source§impl Clone for FCEmbarkEvent
impl Clone for FCEmbarkEvent
Source§fn clone(&self) -> FCEmbarkEvent
fn clone(&self) -> FCEmbarkEvent
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 FCEmbarkEvent
impl Debug for FCEmbarkEvent
Source§impl<'de> Deserialize<'de> for FCEmbarkEvent
impl<'de> Deserialize<'de> for FCEmbarkEvent
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 FCEmbarkEvent
impl PartialEq for FCEmbarkEvent
Source§impl Serialize for FCEmbarkEvent
impl Serialize for FCEmbarkEvent
impl StructuralPartialEq for FCEmbarkEvent
Auto Trait Implementations§
impl Freeze for FCEmbarkEvent
impl RefUnwindSafe for FCEmbarkEvent
impl Send for FCEmbarkEvent
impl Sync for FCEmbarkEvent
impl Unpin for FCEmbarkEvent
impl UnwindSafe for FCEmbarkEvent
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