pub struct DockingTimeoutEvent {
pub station_name: String,
pub station_type: StationType,
pub market_id: u64,
}
Expand description
Fired when the player did not dock within the given time window.
Fields§
§station_name: String
The name of the station the player had requested to dock at.
station_type: StationType
The kind of station the player wanted to dock at.
market_id: u64
The market id of the station.
Trait Implementations§
Source§impl Clone for DockingTimeoutEvent
impl Clone for DockingTimeoutEvent
Source§fn clone(&self) -> DockingTimeoutEvent
fn clone(&self) -> DockingTimeoutEvent
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 DockingTimeoutEvent
impl Debug for DockingTimeoutEvent
Source§impl<'de> Deserialize<'de> for DockingTimeoutEvent
impl<'de> Deserialize<'de> for DockingTimeoutEvent
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 DockingTimeoutEvent
impl PartialEq for DockingTimeoutEvent
Source§impl Serialize for DockingTimeoutEvent
impl Serialize for DockingTimeoutEvent
impl StructuralPartialEq for DockingTimeoutEvent
Auto Trait Implementations§
impl Freeze for DockingTimeoutEvent
impl RefUnwindSafe for DockingTimeoutEvent
impl Send for DockingTimeoutEvent
impl Sync for DockingTimeoutEvent
impl Unpin for DockingTimeoutEvent
impl UnwindSafe for DockingTimeoutEvent
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