pub struct CarrierJumpEvent {
pub docked: bool,
pub on_foot: bool,
pub system_info: LocationInfo,
}
Expand description
Fired when the carrier performs the jump after the jump countdown.
Fields§
§docked: bool
§on_foot: bool
Whether the player is currently on-foot when the jump occurs.
system_info: LocationInfo
Information about the system the carrier has jumped to.
Trait Implementations§
Source§impl Clone for CarrierJumpEvent
impl Clone for CarrierJumpEvent
Source§fn clone(&self) -> CarrierJumpEvent
fn clone(&self) -> CarrierJumpEvent
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 CarrierJumpEvent
impl Debug for CarrierJumpEvent
Source§impl<'de> Deserialize<'de> for CarrierJumpEvent
impl<'de> Deserialize<'de> for CarrierJumpEvent
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 CarrierJumpEvent
impl PartialEq for CarrierJumpEvent
Source§impl Serialize for CarrierJumpEvent
impl Serialize for CarrierJumpEvent
impl StructuralPartialEq for CarrierJumpEvent
Auto Trait Implementations§
impl Freeze for CarrierJumpEvent
impl RefUnwindSafe for CarrierJumpEvent
impl Send for CarrierJumpEvent
impl Sync for CarrierJumpEvent
impl Unpin for CarrierJumpEvent
impl UnwindSafe for CarrierJumpEvent
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