Struct google_youtube3::api::ChannelSectionSnippet
source · pub struct ChannelSectionSnippet {
pub channel_id: Option<String>,
pub default_language: Option<String>,
pub localized: Option<ChannelSectionLocalization>,
pub position: Option<u32>,
pub style: Option<String>,
pub title: Option<String>,
pub type_: Option<String>,
}
Expand description
Basic details about a channel section, including title, style and position.
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 published the channel section.
default_language: Option<String>
The language of the channel section’s default title and description.
localized: Option<ChannelSectionLocalization>
Localized title, read-only.
position: Option<u32>
The position of the channel section in the channel.
style: Option<String>
The style of the channel section.
title: Option<String>
The channel section’s title for multiple_playlists and multiple_channels.
type_: Option<String>
The type of the channel section.
Trait Implementations§
source§impl Clone for ChannelSectionSnippet
impl Clone for ChannelSectionSnippet
source§fn clone(&self) -> ChannelSectionSnippet
fn clone(&self) -> ChannelSectionSnippet
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for ChannelSectionSnippet
impl Debug for ChannelSectionSnippet
source§impl Default for ChannelSectionSnippet
impl Default for ChannelSectionSnippet
source§fn default() -> ChannelSectionSnippet
fn default() -> ChannelSectionSnippet
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for ChannelSectionSnippet
impl<'de> Deserialize<'de> for ChannelSectionSnippet
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Serialize for ChannelSectionSnippet
impl Serialize for ChannelSectionSnippet
impl Part for ChannelSectionSnippet
Auto Trait Implementations§
impl RefUnwindSafe for ChannelSectionSnippet
impl Send for ChannelSectionSnippet
impl Sync for ChannelSectionSnippet
impl Unpin for ChannelSectionSnippet
impl UnwindSafe for ChannelSectionSnippet
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more