[][src]Struct google_youtube3::SearchResultSnippet

pub struct SearchResultSnippet {
    pub live_broadcast_content: Option<String>,
    pub description: Option<String>,
    pub title: Option<String>,
    pub thumbnails: Option<ThumbnailDetails>,
    pub channel_id: Option<String>,
    pub published_at: Option<String>,
    pub channel_title: Option<String>,
}

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

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.

description: Option<String>

A description of the search result.

title: Option<String>

The title of the search result.

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.

channel_id: Option<String>

The value that YouTube uses to uniquely identify the channel that published the resource that the search result identifies.

published_at: Option<String>

The creation date and time of the resource that the search result identifies. The value is specified in ISO 8601 (YYYY-MM-DDThh:mm:ss.sZ) format.

channel_title: Option<String>

The title of the channel that published the resource that the search result identifies.

Trait Implementations

impl Part for SearchResultSnippet[src]

impl Default for SearchResultSnippet[src]

impl Clone for SearchResultSnippet[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for SearchResultSnippet[src]

impl Serialize for SearchResultSnippet[src]

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

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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

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

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.

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

impl<T> Borrow<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

fn get_type(&self) -> TypeId

Get the TypeId of this object.

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