pub enum CollectibleItemInfo {
CollectibleItemInfo(CollectibleItemInfo),
}Variants§
CollectibleItemInfo(CollectibleItemInfo)
Contains information about a collectible item and its last purchase
Trait Implementations§
Source§impl Clone for CollectibleItemInfo
impl Clone for CollectibleItemInfo
Source§fn clone(&self) -> CollectibleItemInfo
fn clone(&self) -> CollectibleItemInfo
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 CollectibleItemInfo
impl Debug for CollectibleItemInfo
Source§impl<'de> Deserialize<'de> for CollectibleItemInfo
impl<'de> Deserialize<'de> for CollectibleItemInfo
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 CollectibleItemInfo
impl PartialEq for CollectibleItemInfo
Source§impl Serialize for CollectibleItemInfo
impl Serialize for CollectibleItemInfo
impl StructuralPartialEq for CollectibleItemInfo
Auto Trait Implementations§
impl Freeze for CollectibleItemInfo
impl RefUnwindSafe for CollectibleItemInfo
impl Send for CollectibleItemInfo
impl Sync for CollectibleItemInfo
impl Unpin for CollectibleItemInfo
impl UnwindSafe for CollectibleItemInfo
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