Struct quandl_v3::prelude::DatabaseMetadata  
                   
                       [−]
                   
               [src]
pub struct DatabaseMetadata {
    pub id: usize,
    pub name: String,
    pub database_code: String,
    pub description: String,
    pub datasets_count: usize,
    pub downloads: usize,
    pub premium: bool,
    pub image: String,
}Hold the metadata associated to a specific database.
Fields
id: usize
                           Quandl's numerical identifier for this database.
name: String
                           Name of the database.
database_code: String
                           Database code; it is the code needed to construct any query on a specific database.
description: String
                           Description of the database.
datasets_count: usize
                           Number of datasets in the database.
downloads: usize
                           Number of time the database's content was downloaded.
Whether or not this is a premium database.
image: String
                           URL pointing to the logo of the database.
Trait Implementations
impl Debug for DatabaseMetadata[src]
impl Clone for DatabaseMetadata[src]
fn clone(&self) -> DatabaseMetadata
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 DatabaseMetadata[src]
fn eq(&self, __arg_0: &DatabaseMetadata) -> bool
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &DatabaseMetadata) -> bool
This method tests for !=.