pub struct HistoryPriceRow {
pub source: String,
pub condition: Option<String>,
pub grader: Option<String>,
pub grade: Option<String>,
pub price_market: Option<f64>,
pub price_low: Option<f64>,
pub price_mid: Option<f64>,
pub price_high: Option<f64>,
pub avg_1d: Option<f64>,
pub avg_7d: Option<f64>,
pub avg_30d: Option<f64>,
}Expand description
One observation within a day.
Fields§
§source: String§condition: Option<String>§grader: Option<String>§grade: Option<String>§price_market: Option<f64>§price_low: Option<f64>§price_mid: Option<f64>§price_high: Option<f64>§avg_1d: Option<f64>§avg_7d: Option<f64>§avg_30d: Option<f64>Trait Implementations§
Source§impl Clone for HistoryPriceRow
impl Clone for HistoryPriceRow
Source§fn clone(&self) -> HistoryPriceRow
fn clone(&self) -> HistoryPriceRow
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 HistoryPriceRow
impl Debug for HistoryPriceRow
Source§impl<'de> Deserialize<'de> for HistoryPriceRow
impl<'de> Deserialize<'de> for HistoryPriceRow
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 HistoryPriceRow
impl RefUnwindSafe for HistoryPriceRow
impl Send for HistoryPriceRow
impl Sync for HistoryPriceRow
impl Unpin for HistoryPriceRow
impl UnsafeUnpin for HistoryPriceRow
impl UnwindSafe for HistoryPriceRow
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