pub struct CarrierJumpCancelled {
pub carrier_id: u64,
}
Expand description
Fired when the current planned carrier jump was cancelled.
Fields§
§carrier_id: u64
The id of the carrier that the player deposited fuel to. This is functionally the same as the market id.
Trait Implementations§
Source§impl Clone for CarrierJumpCancelled
impl Clone for CarrierJumpCancelled
Source§fn clone(&self) -> CarrierJumpCancelled
fn clone(&self) -> CarrierJumpCancelled
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 CarrierJumpCancelled
impl Debug for CarrierJumpCancelled
Source§impl<'de> Deserialize<'de> for CarrierJumpCancelled
impl<'de> Deserialize<'de> for CarrierJumpCancelled
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 CarrierJumpCancelled
impl PartialEq for CarrierJumpCancelled
Source§impl Serialize for CarrierJumpCancelled
impl Serialize for CarrierJumpCancelled
impl StructuralPartialEq for CarrierJumpCancelled
Auto Trait Implementations§
impl Freeze for CarrierJumpCancelled
impl RefUnwindSafe for CarrierJumpCancelled
impl Send for CarrierJumpCancelled
impl Sync for CarrierJumpCancelled
impl Unpin for CarrierJumpCancelled
impl UnwindSafe for CarrierJumpCancelled
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