Struct quandl_v3::prelude::DatabaseSearch
[−]
[src]
pub struct DatabaseSearch { /* fields omitted */ }
Query to search into a database metadata list.
Methods
impl DatabaseSearch
[src]
fn new() -> Self
Create a new database search query.
Trait Implementations
impl Debug for DatabaseSearch
[src]
impl Clone for DatabaseSearch
[src]
fn clone(&self) -> DatabaseSearch
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 DatabaseSearch
[src]
fn eq(&self, __arg_0: &DatabaseSearch) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &DatabaseSearch) -> bool
This method tests for !=
.
impl ApiCall<DatabaseList> for DatabaseSearch
[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 DatabaseSearch
[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 DatabaseSearch
[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