pub struct ChannelInformation {
pub broadcaster_id: BroadcasterId,
pub broadcaster_name: BroadcasterName,
pub game_name: GameName,
pub game_id: GameId,
pub broadcaster_language: BroadcasterLanguage,
pub title: String,
}
Expand description
Represents a single channel object
Fields§
§broadcaster_id: BroadcasterId
§broadcaster_name: BroadcasterName
§game_name: GameName
The name of the game being played on the current stream
game_id: GameId
The id of the game being played on the current stream
broadcaster_language: BroadcasterLanguage
§title: String
The title of the current stream
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