pub enum Listings {
ItemMarketListingNonstackable(ItemMarketListingNonstackable),
ItemMarketListingStackable(ItemMarketListingStackable),
}Variants§
ItemMarketListingNonstackable(ItemMarketListingNonstackable)
ItemMarketListingStackable(ItemMarketListingStackable)
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Listings
impl<'de> Deserialize<'de> for Listings
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 From<ItemMarketListingStackable> for Listings
impl From<ItemMarketListingStackable> for Listings
Source§fn from(value: ItemMarketListingStackable) -> Self
fn from(value: ItemMarketListingStackable) -> Self
Converts to this type from the input type.
impl StructuralPartialEq for Listings
Auto Trait Implementations§
impl Freeze for Listings
impl RefUnwindSafe for Listings
impl Send for Listings
impl Sync for Listings
impl Unpin for Listings
impl UnwindSafe for Listings
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