[][src]Struct google_youtube3::LiveBroadcastStatus

pub struct LiveBroadcastStatus {
    pub recording_status: Option<String>,
    pub live_broadcast_priority: Option<String>,
    pub self_declared_made_for_kids: Option<bool>,
    pub privacy_status: Option<String>,
    pub made_for_kids: Option<bool>,
    pub life_cycle_status: Option<String>,
}

There is no detailed description.

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

Fields

recording_status: Option<String>

The broadcast's recording status.

live_broadcast_priority: Option<String>

Priority of the live broadcast event (internal state).

self_declared_made_for_kids: Option<bool>

no description provided

privacy_status: Option<String>

The broadcast's privacy status. Note that the broadcast represents exactly one YouTube video, so the privacy settings are identical to those supported for videos. In addition, you can set this field by modifying the broadcast resource or by setting the privacyStatus field of the corresponding video resource.

made_for_kids: Option<bool>

no description provided

life_cycle_status: Option<String>

The broadcast's status. The status can be updated using the API's liveBroadcasts.transition method.

Trait Implementations

impl Clone for LiveBroadcastStatus[src]

impl Debug for LiveBroadcastStatus[src]

impl Default for LiveBroadcastStatus[src]

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

impl Part for LiveBroadcastStatus[src]

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