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

Quandl's numerical identifier for this database.

Name of the database.

Database code; it is the code needed to construct any query on a specific database.

Description of the database.

Number of datasets in the database.

Number of time the database's content was downloaded.

Whether or not this is a premium database.

URL pointing to the logo of the database.

Trait Implementations

impl Debug for DatabaseMetadata
[src]

Formats the value using the given formatter.

impl Clone for DatabaseMetadata
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for DatabaseMetadata
[src]

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

This method tests for !=.