pub struct TornItemDetails {
pub uid: ItemUid,
pub stats: ItemMarketListingItemStats,
pub bonuses: Vec<ItemMarketListingItemBonus>,
pub rarity: Option<Rarity>,
pub id: ItemId,
pub name: String,
pub type: TornItemTypeEnum,
pub sub_type: Option<TornItemWeaponTypeEnum>,
}Fields§
§uid: ItemUid§stats: ItemMarketListingItemStats§bonuses: Vec<ItemMarketListingItemBonus>§rarity: Option<Rarity>§id: ItemId§name: String§type: TornItemTypeEnum§sub_type: Option<TornItemWeaponTypeEnum>Trait Implementations§
Source§impl Clone for TornItemDetails
impl Clone for TornItemDetails
Source§fn clone(&self) -> TornItemDetails
fn clone(&self) -> TornItemDetails
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 TornItemDetails
impl Debug for TornItemDetails
Source§impl<'de> Deserialize<'de> for TornItemDetails
impl<'de> Deserialize<'de> for TornItemDetails
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 TornItemDetails
impl PartialEq for TornItemDetails
impl StructuralPartialEq for TornItemDetails
Auto Trait Implementations§
impl Freeze for TornItemDetails
impl RefUnwindSafe for TornItemDetails
impl Send for TornItemDetails
impl Sync for TornItemDetails
impl Unpin for TornItemDetails
impl UnwindSafe for TornItemDetails
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