pub struct CollectibleInfo {
pub id: u64,
pub original_price: u64,
pub recent_average_price: u64,
pub stock: u64,
pub instance_id: u64,
pub name: String,
pub premium_membership_type: String,
pub on_hold: bool,
pub serial: Option<u64>,
}Fields§
§id: u64§original_price: u64§recent_average_price: u64§stock: u64§instance_id: u64§name: String§on_hold: bool§serial: Option<u64>Trait Implementations§
Source§impl Clone for CollectibleInfo
impl Clone for CollectibleInfo
Source§fn clone(&self) -> CollectibleInfo
fn clone(&self) -> CollectibleInfo
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 CollectibleInfo
impl Debug for CollectibleInfo
Source§impl<'de> Deserialize<'de> for CollectibleInfo
impl<'de> Deserialize<'de> for CollectibleInfo
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
Auto Trait Implementations§
impl Freeze for CollectibleInfo
impl RefUnwindSafe for CollectibleInfo
impl Send for CollectibleInfo
impl Sync for CollectibleInfo
impl Unpin for CollectibleInfo
impl UnwindSafe for CollectibleInfo
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