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
none
Unspecified frequency. In a data query, will default to the frequency of the dataset.
daily
Frequency of one data point every day.
weekly
Frequency of one data point every week.
monthly
Frequency of one data point every month.
quarterly
Frequency of one data point every 4 months (or 4 times a year).
annual
Frequency 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