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

Methods

impl CodeListQuery
[src]

Create a new code list query.

Trait Implementations

impl Debug for CodeListQuery
[src]

Formats the value using the given formatter.

impl Clone for CodeListQuery
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for CodeListQuery
[src]

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

This method tests for !=.

impl ApiCall<Vec<Code>> for CodeListQuery
[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 CodeListQuery
[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 Has<ApiArguments> for CodeListQuery

impl HasMut<ApiArguments> for CodeListQuery