[][src]Struct youtube_api::models::VideoDetails

pub struct VideoDetails {
    pub video_id: String,
    pub title: String,
    pub length_seconds: String,
    pub keywords: Vec<String>,
    pub channel_id: String,
    pub is_owner_viewing: bool,
    pub short_description: String,
    pub is_crawlable: bool,
    pub thumbnail: WatermarkClass,
    pub average_rating: f64,
    pub allow_ratings: bool,
    pub view_count: String,
    pub author: String,
    pub is_private: bool,
    pub is_unplugged_corpus: bool,
    pub is_live_content: bool,
}

Fields

video_id: Stringtitle: Stringlength_seconds: Stringkeywords: Vec<String>channel_id: Stringis_owner_viewing: boolshort_description: Stringis_crawlable: boolthumbnail: WatermarkClassaverage_rating: f64allow_ratings: boolview_count: Stringauthor: Stringis_private: boolis_unplugged_corpus: boolis_live_content: bool

Trait Implementations

impl Clone for VideoDetails[src]

impl Debug for VideoDetails[src]

impl<'de> Deserialize<'de> for VideoDetails[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: for<'de> Deserialize<'de>, 
[src]

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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.