Struct quandl_v3::prelude::CodeListQuery
[−]
[src]
pub struct CodeListQuery { pub database_code: String, // some fields omitted }
Query a list of dataset codes from a specific database.
Fields
database_code: String
Methods
impl CodeListQuery
[src]
Trait Implementations
impl Debug for CodeListQuery
[src]
impl Clone for CodeListQuery
[src]
fn clone(&self) -> CodeListQuery
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 CodeListQuery
[src]
fn eq(&self, __arg_0: &CodeListQuery) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &CodeListQuery) -> bool
This method tests for !=
.
impl ApiCall<Vec<Code>> for CodeListQuery
[src]
fn send(&self) -> Result<Vec<Code>>
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 CodeListQuery
[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