Struct quandl_v3::prelude::DatasetMetadata [] [src]

pub struct DatasetMetadata {
    pub id: usize,
    pub dataset_code: String,
    pub database_code: String,
    pub name: String,
    pub description: String,
    pub refreshed_at: String,
    pub newest_available_date: String,
    pub oldest_available_date: String,
    pub column_names: Vec<String>,
    pub frequency: Frequency,
    pub premium: bool,
    pub database_id: usize,
}
[]

Hold the metadata associated to a specific dataset.

Fields

[]

Quandl's numerical identifier for this dataset.

[]

The dataset code for the returned dataset.

[]

The code for the database this dataset belongs to.

[]

The title of this dataset.

[]

An explanation of the contents of the data in this dataset.

[]

The last time the data in this dataset and metadata of this dataset was refreshed.

[]

The most recent date of all available data points in this dataset.

[]

The earliest date of all available data points in this dataset.

[]

The titles for each column of data in this datset.

[]

How often each data point in the resulting dataset is returned.

[]

Whether or not this is a dataset from a premium database.

[]

Quandl's numerical identifier for the database containing this dataset.

Trait Implementations

impl Debug for DatasetMetadata
[src]

[]

Formats the value using the given formatter.

impl Clone for DatasetMetadata
[src]

[]

Returns a copy of the value. Read more

[]

Performs copy-assignment from source. Read more

impl PartialEq for DatasetMetadata
[src]

[]

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

[]

This method tests for !=.