pub struct ItemMarketListingStackable {
pub price: i64,
pub amount: i32,
}
Fields§
§price: i64
§amount: i32
Trait Implementations§
Source§impl Clone for ItemMarketListingStackable
impl Clone for ItemMarketListingStackable
Source§fn clone(&self) -> ItemMarketListingStackable
fn clone(&self) -> ItemMarketListingStackable
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ItemMarketListingStackable
impl Debug for ItemMarketListingStackable
Source§impl<'de> Deserialize<'de> for ItemMarketListingStackable
impl<'de> Deserialize<'de> for ItemMarketListingStackable
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<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.
Source§impl PartialEq for ItemMarketListingStackable
impl PartialEq for ItemMarketListingStackable
Source§fn eq(&self, other: &ItemMarketListingStackable) -> bool
fn eq(&self, other: &ItemMarketListingStackable) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ItemMarketListingStackable
Auto Trait Implementations§
impl Freeze for ItemMarketListingStackable
impl RefUnwindSafe for ItemMarketListingStackable
impl Send for ItemMarketListingStackable
impl Sync for ItemMarketListingStackable
impl Unpin for ItemMarketListingStackable
impl UnwindSafe for ItemMarketListingStackable
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