pub struct SellSuitEvent {
pub suit_id: u64,
pub name: Suit,
pub name_localized: Option<String>,
pub price: u64,
pub suit_mods: Vec<SuitMod>,
}
Fields§
§suit_id: u64
§name: Suit
§name_localized: Option<String>
§price: u64
§suit_mods: Vec<SuitMod>
Trait Implementations§
Source§impl Clone for SellSuitEvent
impl Clone for SellSuitEvent
Source§fn clone(&self) -> SellSuitEvent
fn clone(&self) -> SellSuitEvent
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 SellSuitEvent
impl Debug for SellSuitEvent
Source§impl<'de> Deserialize<'de> for SellSuitEvent
impl<'de> Deserialize<'de> for SellSuitEvent
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 SellSuitEvent
impl PartialEq for SellSuitEvent
Source§impl Serialize for SellSuitEvent
impl Serialize for SellSuitEvent
impl StructuralPartialEq for SellSuitEvent
Auto Trait Implementations§
impl Freeze for SellSuitEvent
impl RefUnwindSafe for SellSuitEvent
impl Send for SellSuitEvent
impl Sync for SellSuitEvent
impl Unpin for SellSuitEvent
impl UnwindSafe for SellSuitEvent
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