Struct quandl_v3::prelude::DatasetMetadataQuery  
                   
                       [−]
                   
               [src]
pub struct DatasetMetadataQuery {
    pub database_code: String,
    pub dataset_code: String,
    // some fields omitted
}Dataset metadata query.
Fields
database_code: String
                           
                           
                           dataset_code: String
                           Methods
impl DatasetMetadataQuery[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 dataset metadata query.
Trait Implementations
impl Debug for DatasetMetadataQuery[src]
impl Clone for DatasetMetadataQuery[src]
fn clone(&self) -> DatasetMetadataQuery
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 DatasetMetadataQuery[src]
fn eq(&self, __arg_0: &DatasetMetadataQuery) -> bool
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &DatasetMetadataQuery) -> bool
This method tests for !=.
impl ApiCall<DatasetMetadata> for DatasetMetadataQuery[src]
fn send(&self) -> Result<DatasetMetadata>
Submit a request to the Quandl's API and return a parsed object representing the data received in a Rust-friendly format. Read more
fn fmt_prefix(&self) -> Option<String>
If applicable, returns the string that would be appended between the QUANDL_API_URL and the '?' character in a query URL. Read more
fn fmt_arguments(&self) -> Option<String>
If applicable, returns the string that would be appended after the '?' character in a query URL. Read more
fn url(&self) -> String
Returns the URL that will be used to submit the query through Quandl's API. Read more
fn encoded_data(&self) -> Result<Vec<u8>>
Bypass the parsers and retrieve the byte stream received from Quandl directly. Read more
impl ApiParameters for DatasetMetadataQuery[src]
fn api_key<S: AsRef<str>>(&mut self, api_key: S) -> &mut Self
Include your personal Quandl API key with your query. Read more
fn fmt(&self) -> Option<String>
Return a string which will be appended to the query's URL given that an api key has been provided. Read more