pub struct DockingCancelled {
pub station_name: String,
pub station_type: StationType,
pub market_id: u64,
}
Expand description
Fired when the player cancels the docking procedure.
Fields§
§station_name: String
The name of the station or settlement the player cancelled the docking procedure for.
station_type: StationType
The kind of station the player was going to dock at.
market_id: u64
The market id for the station.
Trait Implementations§
Source§impl Clone for DockingCancelled
impl Clone for DockingCancelled
Source§fn clone(&self) -> DockingCancelled
fn clone(&self) -> DockingCancelled
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 DockingCancelled
impl Debug for DockingCancelled
Source§impl<'de> Deserialize<'de> for DockingCancelled
impl<'de> Deserialize<'de> for DockingCancelled
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 DockingCancelled
impl PartialEq for DockingCancelled
Source§impl Serialize for DockingCancelled
impl Serialize for DockingCancelled
impl StructuralPartialEq for DockingCancelled
Auto Trait Implementations§
impl Freeze for DockingCancelled
impl RefUnwindSafe for DockingCancelled
impl Send for DockingCancelled
impl Sync for DockingCancelled
impl Unpin for DockingCancelled
impl UnwindSafe for DockingCancelled
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