[][src]Struct kaggle::models::extended::Dataset

pub struct Dataset {
    pub id: i64,
    pub ref_: String,
    pub subtitle: String,
    pub tags: Vec<Tag>,
    pub creator_name: String,
    pub creator_url: Option<String>,
    pub total_bytes: i64,
    pub url: String,
    pub last_updated: NaiveDateTime,
    pub download_count: i64,
    pub is_private: bool,
    pub is_reviewed: bool,
    pub is_featured: bool,
    pub license_name: Option<String>,
    pub description: Option<String>,
    pub owner_name: String,
    pub owner_ref: String,
    pub kernel_count: i64,
    pub title: String,
    pub topic_count: i64,
    pub view_count: i64,
    pub vote_count: i64,
    pub current_version_number: i64,
    pub files: Vec<File>,
    pub versions: Vec<DatasetVersion>,
    pub usability_rating: f64,
}

Fields

id: i64ref_: Stringsubtitle: Stringtags: Vec<Tag>creator_name: Stringcreator_url: Option<String>total_bytes: i64url: Stringlast_updated: NaiveDateTimedownload_count: i64is_private: boolis_reviewed: boolis_featured: boollicense_name: Option<String>description: Option<String>owner_name: Stringowner_ref: Stringkernel_count: i64title: Stringtopic_count: i64view_count: i64vote_count: i64current_version_number: i64files: Vec<File>versions: Vec<DatasetVersion>usability_rating: f64

Trait Implementations

impl Clone for Dataset[src]

impl Debug for Dataset[src]

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

impl Serialize for Dataset[src]

Auto Trait Implementations

impl RefUnwindSafe for Dataset

impl Send for Dataset

impl Sync for Dataset

impl Unpin for Dataset

impl UnwindSafe for Dataset

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.