[][src]Struct google_youtube3::PlaylistItemSnippet

pub struct PlaylistItemSnippet {
    pub channel_id: Option<String>,
    pub description: Option<String>,
    pub title: Option<String>,
    pub resource_id: Option<ResourceId>,
    pub playlist_id: Option<String>,
    pub published_at: Option<String>,
    pub channel_title: Option<String>,
    pub position: Option<u32>,
    pub thumbnails: Option<ThumbnailDetails>,
}

Basic details about a playlist, including title, description and thumbnails.

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

Fields

channel_id: Option<String>

The ID that YouTube uses to uniquely identify the user that added the item to the playlist.

description: Option<String>

The item's description.

title: Option<String>

The item's title.

resource_id: Option<ResourceId>

The id object contains information that can be used to uniquely identify the resource that is included in the playlist as the playlist item.

playlist_id: Option<String>

The ID that YouTube uses to uniquely identify the playlist that the playlist item is in.

published_at: Option<String>

The date and time that the item was added to the playlist. The value is specified in ISO 8601 (YYYY-MM-DDThh:mm:ss.sZ) format.

channel_title: Option<String>

Channel title for the channel that the playlist item belongs to.

position: Option<u32>

The order in which the item appears in the playlist. The value uses a zero-based index, so the first item has a position of 0, the second item has a position of 1, and so forth.

thumbnails: Option<ThumbnailDetails>

A map of thumbnail images associated with the playlist item. 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.

Trait Implementations

impl Part for PlaylistItemSnippet[src]

impl Clone for PlaylistItemSnippet[src]

impl Default for PlaylistItemSnippet[src]

impl Debug for PlaylistItemSnippet[src]

impl Serialize for PlaylistItemSnippet[src]

impl<'de> Deserialize<'de> for PlaylistItemSnippet[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]