pub struct ChannelInformation {
pub broadcaster_id: String,
pub broadcaster_login: String,
pub broadcaster_name: String,
pub broadcaster_language: String,
pub game_name: String,
pub game_id: String,
pub title: String,
pub delay: i64,
pub tags: Vec<String>,
pub content_classification_labels: Vec<String>,
pub is_branded_content: bool,
}
Fields§
§broadcaster_id: String
§broadcaster_login: String
§broadcaster_name: String
§broadcaster_language: String
§game_name: String
§game_id: String
§title: String
§delay: i64
§content_classification_labels: Vec<String>
§is_branded_content: bool
Trait Implementations§
Source§impl Clone for ChannelInformation
impl Clone for ChannelInformation
Source§fn clone(&self) -> ChannelInformation
fn clone(&self) -> ChannelInformation
Returns a duplicate 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 ChannelInformation
impl Debug for ChannelInformation
Source§impl<'de> Deserialize<'de> for ChannelInformation
impl<'de> Deserialize<'de> for ChannelInformation
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
Auto Trait Implementations§
impl Freeze for ChannelInformation
impl RefUnwindSafe for ChannelInformation
impl Send for ChannelInformation
impl Sync for ChannelInformation
impl Unpin for ChannelInformation
impl UnwindSafe for ChannelInformation
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