Struct google_youtube3::api::SearchResultSnippet
source · pub struct SearchResultSnippet {
pub channel_id: Option<String>,
pub channel_title: Option<String>,
pub description: Option<String>,
pub live_broadcast_content: Option<String>,
pub published_at: Option<DateTime<Utc>>,
pub thumbnails: Option<ThumbnailDetails>,
pub title: Option<String>,
}
Expand description
Basic details about a search result, including title, description and thumbnails of the item referenced by the search result.
This type is not used in any activity, and only used as part of another schema.
Fields§
§channel_id: Option<String>
The value that YouTube uses to uniquely identify the channel that published the resource that the search result identifies.
channel_title: Option<String>
The title of the channel that published the resource that the search result identifies.
description: Option<String>
A description of the search result.
live_broadcast_content: Option<String>
It indicates if the resource (video or channel) has upcoming/active live broadcast content. Or it’s “none” if there is not any upcoming/active live broadcasts.
published_at: Option<DateTime<Utc>>
The creation date and time of the resource that the search result identifies.
thumbnails: Option<ThumbnailDetails>
A map of thumbnail images associated with the search result. For each object in the map, the key is the name of the thumbnail image, and the value is an object that contains other information about the thumbnail.
title: Option<String>
The title of the search result.
Trait Implementations§
source§impl Clone for SearchResultSnippet
impl Clone for SearchResultSnippet
source§fn clone(&self) -> SearchResultSnippet
fn clone(&self) -> SearchResultSnippet
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more