[][src]Struct google_youtube3::VideoTopicDetails

pub struct VideoTopicDetails {
    pub topic_ids: Option<Vec<String>>,
    pub relevant_topic_ids: Option<Vec<String>>,
    pub topic_categories: Option<Vec<String>>,
}

Freebase topic information related to the video.

This type is not used in any activity, and only used as part of another schema.

Fields

topic_ids: Option<Vec<String>>

A list of Freebase topic IDs that are centrally associated with the video. These are topics that are centrally featured in the video, and it can be said that the video is mainly about each of these. You can retrieve information about each topic using the Freebase Topic API.

relevant_topic_ids: Option<Vec<String>>

Similar to topic_id, except that these topics are merely relevant to the video. These are topics that may be mentioned in, or appear in the video. You can retrieve information about each topic using Freebase Topic API.

topic_categories: Option<Vec<String>>

A list of Wikipedia URLs that provide a high-level description of the video's content.

Trait Implementations

impl Part for VideoTopicDetails[src]

impl Clone for VideoTopicDetails[src]

impl Default for VideoTopicDetails[src]

impl Debug for VideoTopicDetails[src]

impl Serialize for VideoTopicDetails[src]

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

Auto Trait Implementations

Blanket Implementations

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 = !

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.

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

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

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

impl<T> Typeable for T where
    T: Any

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