Struct quandl_v3::prelude::DataAndMetadataQuery  
                   
                       [−]
                   
               [src]
pub struct DataAndMetadataQuery {
    pub database_code: String,
    pub dataset_code: String,
    // some fields omitted
}Query the data and metadata from a specific dataset.
Fields
database_code: String
                           
                           
                           dataset_code: String
                           Methods
impl DataAndMetadataQuery[src]
fn new<S1: AsRef<str>, S2: AsRef<str>>(
    database_code: S1, 
    dataset_code: S2
) -> Self
database_code: S1,
dataset_code: S2
) -> Self
Create a new data and metadata query.
Trait Implementations
impl Debug for DataAndMetadataQuery[src]
impl Clone for DataAndMetadataQuery[src]
fn clone(&self) -> DataAndMetadataQuery
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 DataAndMetadataQuery[src]
fn eq(&self, __arg_0: &DataAndMetadataQuery) -> bool
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &DataAndMetadataQuery) -> bool
This method tests for !=.