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
dataset_code: String
The dataset code for the returned dataset.
database_code: String
The code for the database this dataset belongs to.
name: String
The title of this dataset.
Trait Implementations
impl Debug for Code
[src]
impl Clone for Code
[src]
fn clone(&self) -> Code
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