Struct google_youtube3::api::ChannelStatus
source · pub struct ChannelStatus {
pub is_linked: Option<bool>,
pub long_uploads_status: Option<String>,
pub made_for_kids: Option<bool>,
pub privacy_status: Option<String>,
pub self_declared_made_for_kids: Option<bool>,
}
Expand description
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§
§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 https://support.google.com/youtube/answer/71673 for more information.
made_for_kids: Option<bool>
no description provided
privacy_status: Option<String>
Privacy status of the channel.
self_declared_made_for_kids: Option<bool>
no description provided
Trait Implementations§
source§impl Clone for ChannelStatus
impl Clone for ChannelStatus
source§fn clone(&self) -> ChannelStatus
fn clone(&self) -> ChannelStatus
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 ChannelStatus
impl Debug for ChannelStatus
source§impl Default for ChannelStatus
impl Default for ChannelStatus
source§fn default() -> ChannelStatus
fn default() -> ChannelStatus
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for ChannelStatus
impl<'de> Deserialize<'de> for ChannelStatus
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 ChannelStatus
impl Serialize for ChannelStatus
impl Part for ChannelStatus
Auto Trait Implementations§
impl RefUnwindSafe for ChannelStatus
impl Send for ChannelStatus
impl Sync for ChannelStatus
impl Unpin for ChannelStatus
impl UnwindSafe for ChannelStatus
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