pub struct DropshipDeployEvent {
pub star_system: String,
pub system_address: u64,
pub body: String,
pub body_id: u8,
pub on_station: bool,
pub on_planet: bool,
}
Expand description
Fired when the player deploys from a dropship into a combat zone.
Fields§
§star_system: String
The star system the player deployed at.
system_address: u64
The system address the player deployed at.
body: String
The name of the body the player deployed at.
body_id: u8
The body id the player deployed at.
on_station: bool
Whether the player deployed at a station.
on_planet: bool
Whether the player deployed at a planet.
Trait Implementations§
Source§impl Clone for DropshipDeployEvent
impl Clone for DropshipDeployEvent
Source§fn clone(&self) -> DropshipDeployEvent
fn clone(&self) -> DropshipDeployEvent
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 DropshipDeployEvent
impl Debug for DropshipDeployEvent
Source§impl<'de> Deserialize<'de> for DropshipDeployEvent
impl<'de> Deserialize<'de> for DropshipDeployEvent
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 DropshipDeployEvent
impl PartialEq for DropshipDeployEvent
Source§impl Serialize for DropshipDeployEvent
impl Serialize for DropshipDeployEvent
impl StructuralPartialEq for DropshipDeployEvent
Auto Trait Implementations§
impl Freeze for DropshipDeployEvent
impl RefUnwindSafe for DropshipDeployEvent
impl Send for DropshipDeployEvent
impl Sync for DropshipDeployEvent
impl Unpin for DropshipDeployEvent
impl UnwindSafe for DropshipDeployEvent
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