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

Unspecified frequency. In a data query, will default to the frequency of the dataset.

Frequency of one data point every day.

Frequency of one data point every week.

Frequency of one data point every month.

Frequency of one data point every 4 months (or 4 times a year).

Frequency of one data point every year.

Trait Implementations

impl Debug for Frequency
[src]

Formats the value using the given formatter.

impl Copy for Frequency
[src]

impl Clone for Frequency
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for Frequency
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.