pub struct HistoricalPrice {
pub snapshot_time: Option<String>,
pub snapshot_time_utc: Option<String>,
pub open_price: PricePoint,
pub high_price: PricePoint,
pub low_price: PricePoint,
pub close_price: PricePoint,
pub last_traded_volume: Option<f64>,
}Fields§
§snapshot_time: Option<String>§snapshot_time_utc: Option<String>§open_price: PricePoint§high_price: PricePoint§low_price: PricePoint§close_price: PricePoint§last_traded_volume: Option<f64>Trait Implementations§
Source§impl Debug for HistoricalPrice
impl Debug for HistoricalPrice
Source§impl<'de> Deserialize<'de> for HistoricalPrice
impl<'de> Deserialize<'de> for HistoricalPrice
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 HistoricalPrice
impl RefUnwindSafe for HistoricalPrice
impl Send for HistoricalPrice
impl Sync for HistoricalPrice
impl Unpin for HistoricalPrice
impl UnsafeUnpin for HistoricalPrice
impl UnwindSafe for HistoricalPrice
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