#[non_exhaustive]pub struct Game {
pub box_art_url: String,
pub id: CategoryId,
pub name: String,
pub igdb_id: Option<IgdbId>,
}
Available on crate feature
helix
only.Expand description
A game or category as defined by Twitch
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.box_art_url: String
Template URL for the game’s box art.
id: CategoryId
Game or category ID.
name: String
Game name.
igdb_id: Option<IgdbId>
The ID that IGDB uses to identify this game.
An empty value may indicate the endpoint does not return an id or that the category/game is not available on IGDB
Trait Implementations§
Source§impl Clone for TwitchCategory
impl Clone for TwitchCategory
Source§fn clone(&self) -> TwitchCategory
fn clone(&self) -> TwitchCategory
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 TwitchCategory
impl Debug for TwitchCategory
Source§impl<'de> Deserialize<'de> for TwitchCategory
impl<'de> Deserialize<'de> for TwitchCategory
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<TwitchCategory, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<TwitchCategory, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for TwitchCategory
impl PartialEq for TwitchCategory
Source§impl Serialize for TwitchCategory
impl Serialize for TwitchCategory
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Eq for TwitchCategory
impl StructuralPartialEq for TwitchCategory
Auto Trait Implementations§
impl Freeze for TwitchCategory
impl RefUnwindSafe for TwitchCategory
impl Send for TwitchCategory
impl Sync for TwitchCategory
impl Unpin for TwitchCategory
impl UnwindSafe for TwitchCategory
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