[][src]Struct google_youtube3::LiveBroadcastSnippet

pub struct LiveBroadcastSnippet {
    pub actual_end_time: Option<String>,
    pub description: Option<String>,
    pub title: Option<String>,
    pub channel_id: Option<String>,
    pub published_at: Option<String>,
    pub live_chat_id: Option<String>,
    pub scheduled_start_time: Option<String>,
    pub actual_start_time: Option<String>,
    pub scheduled_end_time: Option<String>,
    pub broadcast_type: Option<String>,
    pub is_default_broadcast: Option<bool>,
    pub thumbnails: Option<ThumbnailDetails>,
}

There is no detailed description.

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

Fields

actual_end_time: Option<String>

The date and time that the broadcast actually ended. This information is only available once the broadcast's state is complete. The value is specified in ISO 8601 (YYYY-MM-DDThh:mm:ss.sZ) format.

description: Option<String>

The broadcast's description. As with the title, you can set this field by modifying the broadcast resource or by setting the description field of the corresponding video resource.

title: Option<String>

The broadcast's title. Note that the broadcast represents exactly one YouTube video. You can set this field by modifying the broadcast resource or by setting the title field of the corresponding video resource.

channel_id: Option<String>

The ID that YouTube uses to uniquely identify the channel that is publishing the broadcast.

published_at: Option<String>

The date and time that the broadcast was added to YouTube's live broadcast schedule. The value is specified in ISO 8601 (YYYY-MM-DDThh:mm:ss.sZ) format.

live_chat_id: Option<String>

The id of the live chat for this broadcast.

scheduled_start_time: Option<String>

The date and time that the broadcast is scheduled to start. The value is specified in ISO 8601 (YYYY-MM-DDThh:mm:ss.sZ) format.

actual_start_time: Option<String>

The date and time that the broadcast actually started. This information is only available once the broadcast's state is live. The value is specified in ISO 8601 (YYYY-MM-DDThh:mm:ss.sZ) format.

scheduled_end_time: Option<String>

The date and time that the broadcast is scheduled to end. The value is specified in ISO 8601 (YYYY-MM-DDThh:mm:ss.sZ) format.

broadcast_type: Option<String>

no description provided

is_default_broadcast: Option<bool>

no description provided

thumbnails: Option<ThumbnailDetails>

A map of thumbnail images associated with the broadcast. For each nested object in this object, 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 Clone for LiveBroadcastSnippet[src]

impl Debug for LiveBroadcastSnippet[src]

impl Default for LiveBroadcastSnippet[src]

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

impl Part for LiveBroadcastSnippet[src]

impl Serialize for LiveBroadcastSnippet[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