[][src]Struct google_youtube3::ChannelSettings

pub struct ChannelSettings {
    pub description: Option<String>,
    pub title: Option<String>,
    pub country: Option<String>,
    pub show_browse_view: Option<bool>,
    pub featured_channels_title: Option<String>,
    pub default_language: Option<String>,
    pub unsubscribed_trailer: Option<String>,
    pub featured_channels_urls: Option<Vec<String>>,
    pub profile_color: Option<String>,
    pub default_tab: Option<String>,
    pub moderate_comments: Option<bool>,
    pub keywords: Option<String>,
    pub show_related_channels: Option<bool>,
    pub tracking_analytics_account_id: Option<String>,
}

Branding properties for the channel view.

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

Fields

description: Option<String>

Specifies the channel description.

title: Option<String>

Specifies the channel title.

country: Option<String>

The country of the channel.

show_browse_view: Option<bool>

Whether the tab to browse the videos should be displayed.

featured_channels_title: Option<String>

Title for the featured channels tab.

default_language: Option<String>

no description provided

unsubscribed_trailer: Option<String>

The trailer of the channel, for users that are not subscribers.

featured_channels_urls: Option<Vec<String>>

The list of featured channels.

profile_color: Option<String>

A prominent color that can be rendered on this channel page.

default_tab: Option<String>

Which content tab users should see when viewing the channel.

moderate_comments: Option<bool>

Whether user-submitted comments left on the channel page need to be approved by the channel owner to be publicly visible.

keywords: Option<String>

Lists keywords associated with the channel, comma-separated.

show_related_channels: Option<bool>

Whether related channels should be proposed.

tracking_analytics_account_id: Option<String>

The ID for a Google Analytics account to track and measure traffic to the channels.

Trait Implementations

impl Part for ChannelSettings[src]

impl Default for ChannelSettings[src]

impl Clone for ChannelSettings[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for ChannelSettings[src]

impl Serialize for ChannelSettings[src]

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

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

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> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.

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