pub struct CardPrice {
pub amazon_price: Option<String>,
pub cardmarket_price: Option<String>,
pub coolstuffinc_price: Option<String>,
pub ebay_price: Option<String>,
pub tcgplayer_price: Option<String>,
}Fields§
§amazon_price: Option<String>§cardmarket_price: Option<String>§coolstuffinc_price: Option<String>§ebay_price: Option<String>§tcgplayer_price: Option<String>Trait Implementations§
Source§impl<'de> Deserialize<'de> for CardPrice
impl<'de> Deserialize<'de> for CardPrice
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 CardPrice
impl RefUnwindSafe for CardPrice
impl Send for CardPrice
impl Sync for CardPrice
impl Unpin for CardPrice
impl UnsafeUnpin for CardPrice
impl UnwindSafe for CardPrice
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