Struct alphavantage::time_series::TimeSeries[][src]

pub struct TimeSeries {
    pub symbol: String,
    pub last_refreshed: DateTime<Tz>,
    pub entries: Vec<Entry>,
}

Represents a time series for a given symbol.

Fields

Symbol the time series refers to.

Date the information was last refreshed at.

Entries in the time series, sorted by ascending dates.

Trait Implementations

impl Debug for TimeSeries
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for TimeSeries

impl Sync for TimeSeries