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