Enum quandl_v3::prelude::Frequency
[−]
[src]
pub enum Frequency {
none,
daily,
weekly,
monthly,
quarterly,
annual,
}Parameters to indicate the desired frequency. When you change the frequency of a dataset, Quandl returns the last observation for the given period.
Variants
noneUnspecified frequency. In a data query, will default to the frequency of the dataset.
dailyFrequency of one data point every day.
weeklyFrequency of one data point every week.
monthlyFrequency of one data point every month.
quarterlyFrequency of one data point every 4 months (or 4 times a year).
annualFrequency of one data point every year.
Trait Implementations
impl Debug for Frequency[src]
impl Copy for Frequency[src]
impl Clone for Frequency[src]
fn clone(&self) -> Frequency
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0
Performs copy-assignment from source. Read more