pub struct ClearImpoundEvent {
pub ship_type: ShipType,
pub ship_id: u64,
pub ship_market_id: u64,
pub market_id: u64,
}
Expand description
Fired when the player clears their ship after being arrested while on-foot.
Fields§
§ship_type: ShipType
The ship type of the impounded ship.
ship_id: u64
The id of the impounded ship.
ship_market_id: u64
The market id where the ship is impounded.
market_id: u64
The market id where the player currently is.
Trait Implementations§
Source§impl Clone for ClearImpoundEvent
impl Clone for ClearImpoundEvent
Source§fn clone(&self) -> ClearImpoundEvent
fn clone(&self) -> ClearImpoundEvent
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 ClearImpoundEvent
impl Debug for ClearImpoundEvent
Source§impl<'de> Deserialize<'de> for ClearImpoundEvent
impl<'de> Deserialize<'de> for ClearImpoundEvent
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 ClearImpoundEvent
impl PartialEq for ClearImpoundEvent
Source§impl Serialize for ClearImpoundEvent
impl Serialize for ClearImpoundEvent
impl StructuralPartialEq for ClearImpoundEvent
Auto Trait Implementations§
impl Freeze for ClearImpoundEvent
impl RefUnwindSafe for ClearImpoundEvent
impl Send for ClearImpoundEvent
impl Sync for ClearImpoundEvent
impl Unpin for ClearImpoundEvent
impl UnwindSafe for ClearImpoundEvent
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