Struct rustube::VideoDetails[][src]

pub struct VideoDetails {
    pub allow_ratings: bool,
    pub author: String,
    pub average_rating: f64,
    pub channel_id: String,
    pub is_crawlable: bool,
    pub is_live_content: bool,
    pub is_live_default_broadcast: bool,
    pub is_low_latency_live_stream: bool,
    pub is_owner_viewing: bool,
    pub is_private: bool,
    pub is_unplugged_corpus: bool,
    pub key_words: Vec<String>,
    pub length_seconds: u64,
    pub short_description: String,
    pub thumbnails: Vec<Thumbnail>,
    pub title: String,
    pub video_id: IdBuf,
    pub view_count: u64,
}

Fields

allow_ratings: boolauthor: Stringaverage_rating: f64channel_id: Stringis_crawlable: boolis_live_content: boolis_live_default_broadcast: boolis_low_latency_live_stream: boolis_owner_viewing: boolis_private: boolis_unplugged_corpus: boolkey_words: Vec<String>length_seconds: u64short_description: Stringthumbnails: Vec<Thumbnail>title: Stringvideo_id: IdBufview_count: u64

Trait Implementations

impl Clone for VideoDetails[src]

This is supported on crate feature fetch only.

impl Debug for VideoDetails[src]

This is supported on crate feature fetch only.

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

This is supported on crate feature fetch only.

impl PartialEq<VideoDetails> for VideoDetails[src]

This is supported on crate feature fetch only.

impl Serialize for VideoDetails[src]

This is supported on crate feature fetch only.

impl StructuralPartialEq for VideoDetails[src]

This is supported on crate feature fetch only.

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> Instrument for T[src]

impl<T> Instrument 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.