pub struct SellDronesEvent {
pub kind: SellDronesEventType,
pub count: u16,
pub sell_price: u64,
pub total_sale: u64,
}
Fields§
§kind: SellDronesEventType
§count: u16
§sell_price: u64
§total_sale: u64
Trait Implementations§
Source§impl Clone for SellDronesEvent
impl Clone for SellDronesEvent
Source§fn clone(&self) -> SellDronesEvent
fn clone(&self) -> SellDronesEvent
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 SellDronesEvent
impl Debug for SellDronesEvent
Source§impl<'de> Deserialize<'de> for SellDronesEvent
impl<'de> Deserialize<'de> for SellDronesEvent
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 SellDronesEvent
impl PartialEq for SellDronesEvent
Source§impl Serialize for SellDronesEvent
impl Serialize for SellDronesEvent
impl StructuralPartialEq for SellDronesEvent
Auto Trait Implementations§
impl Freeze for SellDronesEvent
impl RefUnwindSafe for SellDronesEvent
impl Send for SellDronesEvent
impl Sync for SellDronesEvent
impl Unpin for SellDronesEvent
impl UnwindSafe for SellDronesEvent
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