pub struct Prices {
pub low: Option<f32>,
pub mid: Option<f32>,
pub high: Option<f32>,
pub market: Option<f32>,
pub direct_low: Option<f32>,
}
Fields§
§low: Option<f32>
The low price of the card
mid: Option<f32>
The mid price of the card
high: Option<f32>
The high price of the card
market: Option<f32>
The market value of the card. This is usually the best representation of what people are willing to pay.
direct_low: Option<f32>
The direct low price of the card
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Prices
impl<'de> Deserialize<'de> for Prices
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 Prices
impl RefUnwindSafe for Prices
impl Send for Prices
impl Sync for Prices
impl Unpin for Prices
impl UnwindSafe for Prices
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