pub struct ShipyardSellEvent {
pub ship_type: ShipType,
pub sell_ship_id: u64,
pub ship_price: u64,
pub system: Option<String>,
}
Fields§
§ship_type: ShipType
§sell_ship_id: u64
§ship_price: u64
§system: Option<String>
Trait Implementations§
Source§impl Clone for ShipyardSellEvent
impl Clone for ShipyardSellEvent
Source§fn clone(&self) -> ShipyardSellEvent
fn clone(&self) -> ShipyardSellEvent
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 ShipyardSellEvent
impl Debug for ShipyardSellEvent
Source§impl<'de> Deserialize<'de> for ShipyardSellEvent
impl<'de> Deserialize<'de> for ShipyardSellEvent
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 ShipyardSellEvent
impl PartialEq for ShipyardSellEvent
Source§impl Serialize for ShipyardSellEvent
impl Serialize for ShipyardSellEvent
impl StructuralPartialEq for ShipyardSellEvent
Auto Trait Implementations§
impl Freeze for ShipyardSellEvent
impl RefUnwindSafe for ShipyardSellEvent
impl Send for ShipyardSellEvent
impl Sync for ShipyardSellEvent
impl Unpin for ShipyardSellEvent
impl UnwindSafe for ShipyardSellEvent
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