[][src]Struct google_youtube3::PlaylistItemContentDetails

pub struct PlaylistItemContentDetails {
    pub note: Option<String>,
    pub video_published_at: Option<String>,
    pub start_at: Option<String>,
    pub end_at: Option<String>,
    pub video_id: Option<String>,
}

There is no detailed description.

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

Fields

note: Option<String>

A user-generated note for this item.

video_published_at: Option<String>

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

start_at: Option<String>

The time, measured in seconds from the start of the video, when the video should start playing. (The playlist owner can specify the times when the video should start and stop playing when the video is played in the context of the playlist.) The default value is 0.

end_at: Option<String>

The time, measured in seconds from the start of the video, when the video should stop playing. (The playlist owner can specify the times when the video should start and stop playing when the video is played in the context of the playlist.) By default, assume that the video.endTime is the end of the video.

video_id: Option<String>

The ID that YouTube uses to uniquely identify a video. To retrieve the video resource, set the id query parameter to this value in your API request.

Trait Implementations

impl Clone for PlaylistItemContentDetails[src]

impl Debug for PlaylistItemContentDetails[src]

impl Default for PlaylistItemContentDetails[src]

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

impl Part for PlaylistItemContentDetails[src]

impl Serialize for PlaylistItemContentDetails[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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 = 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> Typeable for T where
    T: Any