pub struct CarrierJumpRequestEvent {
pub carrier_id: u64,
pub system_name: String,
pub body: Option<String>,
pub system_address: u64,
pub body_id: u8,
pub departure_time: DateTime<Utc>,
}
Expand description
Fired when the fleet carrier owner schedules a jump.
Fields§
§carrier_id: u64
The id of the carrier that the player deposited fuel to. This is functionally the same as the market id.
system_name: String
The name of the system the fleet carrier will jump to.
body: Option<String>
The name of the body the fleet carrier will jump to. Only present if a specific body was selected when planning the jump.
system_address: u64
The address of the system the fleet carrier will jump to.
body_id: u8
The body id the carrier will arrive at.
departure_time: DateTime<Utc>
The departure time of the carrier. At this time the carrier will perform the jump.
Trait Implementations§
Source§impl Clone for CarrierJumpRequestEvent
impl Clone for CarrierJumpRequestEvent
Source§fn clone(&self) -> CarrierJumpRequestEvent
fn clone(&self) -> CarrierJumpRequestEvent
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 CarrierJumpRequestEvent
impl Debug for CarrierJumpRequestEvent
Source§impl<'de> Deserialize<'de> for CarrierJumpRequestEvent
impl<'de> Deserialize<'de> for CarrierJumpRequestEvent
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 CarrierJumpRequestEvent
impl PartialEq for CarrierJumpRequestEvent
Source§impl Serialize for CarrierJumpRequestEvent
impl Serialize for CarrierJumpRequestEvent
impl StructuralPartialEq for CarrierJumpRequestEvent
Auto Trait Implementations§
impl Freeze for CarrierJumpRequestEvent
impl RefUnwindSafe for CarrierJumpRequestEvent
impl Send for CarrierJumpRequestEvent
impl Sync for CarrierJumpRequestEvent
impl Unpin for CarrierJumpRequestEvent
impl UnwindSafe for CarrierJumpRequestEvent
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