Struct google_youtube3::api::LiveStreamSnippet
source · pub struct LiveStreamSnippet {
pub channel_id: Option<String>,
pub description: Option<String>,
pub is_default_stream: Option<bool>,
pub published_at: Option<DateTime<Utc>>,
pub title: Option<String>,
}
Expand description
There is no detailed description.
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 is transmitting the stream.
description: Option<String>
The stream’s description. The value cannot be longer than 10000 characters.
is_default_stream: Option<bool>
no description provided
published_at: Option<DateTime<Utc>>
The date and time that the stream was created.
title: Option<String>
The stream’s title. The value must be between 1 and 128 characters long.
Trait Implementations§
source§impl Clone for LiveStreamSnippet
impl Clone for LiveStreamSnippet
source§fn clone(&self) -> LiveStreamSnippet
fn clone(&self) -> LiveStreamSnippet
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 LiveStreamSnippet
impl Debug for LiveStreamSnippet
source§impl Default for LiveStreamSnippet
impl Default for LiveStreamSnippet
source§fn default() -> LiveStreamSnippet
fn default() -> LiveStreamSnippet
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for LiveStreamSnippet
impl<'de> Deserialize<'de> for LiveStreamSnippet
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 LiveStreamSnippet
impl Serialize for LiveStreamSnippet
impl Part for LiveStreamSnippet
Auto Trait Implementations§
impl RefUnwindSafe for LiveStreamSnippet
impl Send for LiveStreamSnippet
impl Sync for LiveStreamSnippet
impl Unpin for LiveStreamSnippet
impl UnwindSafe for LiveStreamSnippet
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