[][src]Struct google_youtube3::ChannelStatus

pub struct ChannelStatus {
    pub self_declared_made_for_kids: Option<bool>,
    pub privacy_status: Option<String>,
    pub made_for_kids: Option<bool>,
    pub is_linked: Option<bool>,
    pub long_uploads_status: Option<String>,
}

JSON template for the status part of a channel.

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

Fields

self_declared_made_for_kids: Option<bool>

no description provided

privacy_status: Option<String>

Privacy status of the channel.

made_for_kids: Option<bool>

no description provided

is_linked: Option<bool>

If true, then the user is linked to either a YouTube username or G+ account. Otherwise, the user doesn't have a public YouTube identity.

long_uploads_status: Option<String>

The long uploads status of this channel. See

Trait Implementations

impl Clone for ChannelStatus[src]

impl Debug for ChannelStatus[src]

impl Default for ChannelStatus[src]

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

impl Part for ChannelStatus[src]

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