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