Struct quandl_v3::prelude::DataQuery [] [src]

pub struct DataQuery {
    pub database_code: String,
    pub dataset_code: String,
    // some fields omitted
}

Query the data from a specific dataset.

Fields

Methods

impl DataQuery
[src]

Create a new data query.

Trait Implementations

impl Debug for DataQuery
[src]

Formats the value using the given formatter.

impl Clone for DataQuery
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for DataQuery
[src]

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

This method tests for !=.

impl<T: DeserializeOwned + Clone> ApiCall<Vec<T>> for DataQuery
[src]

Submit a request to the Quandl's API and return a parsed object representing the data received in a Rust-friendly format. Read more

If applicable, returns the string that would be appended between the QUANDL_API_URL and the '?' character in a query URL. Read more

If applicable, returns the string that would be appended after the '?' character in a query URL. Read more

Returns the URL that will be used to submit the query through Quandl's API. Read more

Bypass the parsers and retrieve the byte stream received from Quandl directly. Read more

impl ApiParameters for DataQuery
[src]

Include your personal Quandl API key with your query. Read more

Return a string which will be appended to the query's URL given that an api key has been provided. Read more

impl DataParameters for DataQuery
[src]

Specify the number of rows of data to be returned by this query. Read more

Specify the number of rows of data to be returned by this query. Read more

Specify the ordering of the data. Read more

Specify whether the data should be returned at a smaller frequency than avaiable. Read more

Specify how the data should be transformed by Quandl's server before being returned. Read more

Specify the oldest data point to be returned. Read more

Specify the earliest data point to be returned. Read more

Specify which column to be returned. Read more

Return a string which will be appended to the query's URL given that at least one of the data parameters has been specified. Read more

impl Has<DataArguments> for DataQuery

impl HasMut<DataArguments> for DataQuery

impl Has<ApiArguments> for DataQuery

impl HasMut<ApiArguments> for DataQuery