[][src]Struct quandl_v3::prelude::DatabaseMetadata

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.

premium: bool

Whether or not this is a premium database.

image: String

URL pointing to the logo of the database.

Trait Implementations

impl ApiCall<DatabaseMetadata> for DatabaseMetadataQuery[src]

impl Clone for DatabaseMetadata[src]

impl Debug for DatabaseMetadata[src]

impl<'de> Deserialize<'de> for DatabaseMetadata[src]

impl PartialEq<DatabaseMetadata> for DatabaseMetadata[src]

impl Serialize for DatabaseMetadata[src]

impl StructuralPartialEq for DatabaseMetadata[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.