pub struct HistoricalPrice {}Expand description
Historical price data (EOD - End of Day)
Fields§
§date: String§open: f64§high: f64§low: f64§close: f64§adj_close: f64§volume: i64§unadjusted_volume: i64§change: f64§change_percent: f64§vwap: f64§label: String§change_over_time: f64Trait Implementations§
Source§impl Clone for HistoricalPrice
impl Clone for HistoricalPrice
Source§fn clone(&self) -> HistoricalPrice
fn clone(&self) -> HistoricalPrice
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 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
Source§impl PartialEq for HistoricalPrice
impl PartialEq for HistoricalPrice
Source§impl Serialize for HistoricalPrice
impl Serialize for HistoricalPrice
impl StructuralPartialEq for HistoricalPrice
Auto Trait Implementations§
impl Freeze for HistoricalPrice
impl RefUnwindSafe for HistoricalPrice
impl Send for HistoricalPrice
impl Sync for HistoricalPrice
impl Unpin 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