pub struct EodDataItem {}
Expand description
Rust representation of single data item from Marketstack eod
response.
Fields§
§date: DateTime<Utc>
Exact date/time the given data was collected in ISO-8601 format.
symbol: String
Stock ticker symbol of the current data object.
exchange: String
Exchange MIC identification associated with the current data object.
split_factor: f64
Split factor used to adjust prices when a company splits, reverse splits or pays a distribution.
dividend: f64
Distribution of earnings to shareholders.
open: f64
Raw opening price of the given stock ticker.
high: f64
Raw high price of the given stock ticker.
low: f64
Raw low price of the given stock ticker.
close: f64
Raw closing price of the given stock ticker.
volume: f64
Raw volume of the given stock ticker.
adj_open: f64
Adjusted opening price of the given stock ticker.
adj_high: f64
Adjusted high price of the given stock ticker.
adj_low: f64
Adjusted low price of the given stock ticker.
adj_close: f64
Adjusted closing price of the given stock ticker.
adj_volume: f64
Adjusted volume of the given stock ticker.
Trait Implementations§
Source§impl Clone for EodDataItem
impl Clone for EodDataItem
Source§fn clone(&self) -> EodDataItem
fn clone(&self) -> EodDataItem
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more