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
database_code: String
Methods
impl DatasetSearch
[src]
Trait Implementations
impl Debug for DatasetSearch
[src]
impl Clone for DatasetSearch
[src]
fn clone(&self) -> DatasetSearch
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 DatasetSearch
[src]
fn eq(&self, __arg_0: &DatasetSearch) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &DatasetSearch) -> bool
This method tests for !=
.
impl ApiCall<DatasetList> for DatasetSearch
[src]
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
fn send(&self) -> Result<T>
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]
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
impl SearchParameters for DatasetSearch
[src]
fn query<V: AsRef<[S]>, S: AsRef<str>>(&mut self, keywords: V) -> &mut Self
Specify a vector/list of search keywords to retrieve only database/dataset related to those search terms. Read more
fn per_page(&mut self, n: usize) -> &mut Self
Specify how many entries should be returned by search query. Read more
fn page(&mut self, n: usize) -> &mut Self
Given there is more than one page of entries to be returned, specify which page we want to query. Read more
fn fmt(&self) -> Option<String>
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