pub struct ItemMarketListingNonstackable {
    pub price: i64,
    pub amount: i32,
    pub item_details: ItemMarketListingItemDetails,
}Fields§
§price: i64§amount: i32§item_details: ItemMarketListingItemDetailsTrait Implementations§
Source§impl Clone for ItemMarketListingNonstackable
 
impl Clone for ItemMarketListingNonstackable
Source§fn clone(&self) -> ItemMarketListingNonstackable
 
fn clone(&self) -> ItemMarketListingNonstackable
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 ItemMarketListingNonstackable
 
impl<'de> Deserialize<'de> for ItemMarketListingNonstackable
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 From<ItemMarketListingNonstackable> for Listings
 
impl From<ItemMarketListingNonstackable> for Listings
Source§fn from(value: ItemMarketListingNonstackable) -> Self
 
fn from(value: ItemMarketListingNonstackable) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ItemMarketListingNonstackable
 
impl PartialEq for ItemMarketListingNonstackable
Source§fn eq(&self, other: &ItemMarketListingNonstackable) -> bool
 
fn eq(&self, other: &ItemMarketListingNonstackable) -> bool
Tests for 
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ItemMarketListingNonstackable
Auto Trait Implementations§
impl Freeze for ItemMarketListingNonstackable
impl RefUnwindSafe for ItemMarketListingNonstackable
impl Send for ItemMarketListingNonstackable
impl Sync for ItemMarketListingNonstackable
impl Unpin for ItemMarketListingNonstackable
impl UnwindSafe for ItemMarketListingNonstackable
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