pub struct ItemMarketListingItemDetails {
pub uid: ItemUid,
pub stats: ItemMarketListingItemStats,
pub bonuses: Vec<ItemMarketListingItemBonus>,
pub rarity: Option<Rarity>,
}
Fields§
§uid: ItemUid
§stats: ItemMarketListingItemStats
§bonuses: Vec<ItemMarketListingItemBonus>
§rarity: Option<Rarity>
Trait Implementations§
Source§impl Clone for ItemMarketListingItemDetails
impl Clone for ItemMarketListingItemDetails
Source§fn clone(&self) -> ItemMarketListingItemDetails
fn clone(&self) -> ItemMarketListingItemDetails
Returns a duplicate 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 ItemMarketListingItemDetails
impl Debug for ItemMarketListingItemDetails
Source§impl<'de> Deserialize<'de> for ItemMarketListingItemDetails
impl<'de> Deserialize<'de> for ItemMarketListingItemDetails
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 ItemMarketListingItemDetails
impl PartialEq for ItemMarketListingItemDetails
Source§fn eq(&self, other: &ItemMarketListingItemDetails) -> bool
fn eq(&self, other: &ItemMarketListingItemDetails) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ItemMarketListingItemDetails
Auto Trait Implementations§
impl Freeze for ItemMarketListingItemDetails
impl RefUnwindSafe for ItemMarketListingItemDetails
impl Send for ItemMarketListingItemDetails
impl Sync for ItemMarketListingItemDetails
impl Unpin for ItemMarketListingItemDetails
impl UnwindSafe for ItemMarketListingItemDetails
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