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
id: usize
Quandl's numerical identifier for this dataset.
dataset_code: String
The dataset code for the returned dataset.
database_code: String
The code for the database this dataset belongs to.
name: String
The title of this dataset.
description: String
An explanation of the contents of the data in this dataset.
refreshed_at: String
The last time the data in this dataset and metadata of this dataset was refreshed.
newest_available_date: String
The most recent date of all available data points in this dataset.
oldest_available_date: String
The earliest date of all available data points in this dataset.
column_names: Vec<String>
The titles for each column of data in this datset.
frequency: Frequency
How often each data point in the resulting dataset is returned.
Whether or not this is a dataset from a premium database.
database_id: usize
Quandl's numerical identifier for the database containing this dataset.
Trait Implementations
impl Debug for DatasetMetadata
[src]
impl Clone for DatasetMetadata
[src]
fn clone(&self) -> DatasetMetadata
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
impl PartialEq for DatasetMetadata
[src]
fn eq(&self, __arg_0: &DatasetMetadata) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &DatasetMetadata) -> bool
This method tests for !=
.