Struct quandl_v3::prelude::DatasetSearch [] [src]

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

Query to search into a dataset metadata list.

Fields

Methods

impl DatasetSearch
[src]

Create a new dataset search query.

Trait Implementations

impl Debug for DatasetSearch
[src]

Formats the value using the given formatter.

impl Clone for DatasetSearch
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for DatasetSearch
[src]

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

This method tests for !=.

impl ApiCall<DatasetList> for DatasetSearch
[src]

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

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

impl ApiParameters for DatasetSearch
[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 SearchParameters for DatasetSearch
[src]

Specify a vector/list of search keywords to retrieve only database/dataset related to those search terms. Read more

Specify how many entries should be returned by search query. Read more

Given there is more than one page of entries to be returned, specify which page we want to query. Read more

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

impl Has<ApiArguments> for DatasetSearch

impl HasMut<ApiArguments> for DatasetSearch

impl Has<SearchArguments> for DatasetSearch

impl HasMut<SearchArguments> for DatasetSearch