Struct google_youtube3::api::LiveStreamSnippet[][src]

pub struct LiveStreamSnippet {
    pub channel_id: Option<String>,
    pub description: Option<String>,
    pub is_default_stream: Option<bool>,
    pub published_at: Option<String>,
    pub title: Option<String>,
}

There is no detailed description.

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 channel that is transmitting the stream.

description: Option<String>

The stream's description. The value cannot be longer than 10000 characters.

is_default_stream: Option<bool>

no description provided

published_at: Option<String>

The date and time that the stream was created.

title: Option<String>

The stream's title. The value must be between 1 and 128 characters long.

Trait Implementations

impl Clone for LiveStreamSnippet[src]

impl Debug for LiveStreamSnippet[src]

impl Default for LiveStreamSnippet[src]

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

impl Part for LiveStreamSnippet[src]

impl Serialize for LiveStreamSnippet[src]

Auto Trait Implementations

impl RefUnwindSafe for LiveStreamSnippet[src]

impl Send for LiveStreamSnippet[src]

impl Sync for LiveStreamSnippet[src]

impl Unpin for LiveStreamSnippet[src]

impl UnwindSafe for LiveStreamSnippet[src]

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> Instrument 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.