pub struct TcgPlayer {
pub url: String,
pub updated_at: Option<String>,
pub prices: Option<Prices>,
}
Fields§
§url: String
The URL to the TCGPlayer store page to purchase this card.
updated_at: Option<String>
A date that the price was last updated. In the format of YYYY/MM/DD
prices: Option<Prices>
A hash of price types. All prices are in US Dollars. See below for possible values.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for TcgPlayer
impl<'de> Deserialize<'de> for TcgPlayer
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 TcgPlayer
impl RefUnwindSafe for TcgPlayer
impl Send for TcgPlayer
impl Sync for TcgPlayer
impl Unpin for TcgPlayer
impl UnwindSafe for TcgPlayer
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