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

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 Clone for Code[src]

impl Debug for Code[src]

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

impl PartialEq<Code> for Code[src]

impl Serialize for Code[src]

impl StructuralPartialEq for Code[src]

Auto Trait Implementations

impl RefUnwindSafe for Code

impl Send for Code

impl Sync for Code

impl Unpin for Code

impl UnwindSafe for Code

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.