Struct quandl_v3::prelude::Code [] [src]

pub struct Code {
    pub dataset_code: String,
    pub database_code: String,
    pub name: String,
}

Data structure to hold the result of a code list query.

It should be noted that I slightly changed the meaning of a "dataset list" in this crate for consistency with the DatabaseList. In this crate DatasetList and DatabaseList correspond to Quandl's "dataset search" and "database list" respectively while Vec<Code> is Quandl's equivalent of a "dataset list".

Fields

The dataset code for the returned dataset.

The code for the database this dataset belongs to.

The title of this dataset.

Trait Implementations

impl Debug for Code
[src]

Formats the value using the given formatter.

impl Clone for Code
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for Code
[src]

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

This method tests for !=.