Struct google_youtube3::VideoTopicDetails[][src]

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

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.

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.

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

Trait Implementations

impl Default for VideoTopicDetails
[src]

Returns the "default value" for a type. Read more

impl Clone for VideoTopicDetails
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for VideoTopicDetails
[src]

Formats the value using the given formatter. Read more

impl Part for VideoTopicDetails
[src]

Auto Trait Implementations