[][src]Struct twitch_api_rs::resource::channels::get_channel_information::ChannelInformation

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,
}

Represents a single channel object

Fields

broadcaster_id: BroadcasterIdbroadcaster_name: BroadcasterNamegame_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: BroadcasterLanguagetitle: String

The title of the current stream

Trait Implementations

impl Clone for ChannelInformation[src]

impl Debug for ChannelInformation[src]

impl<'de> Deserialize<'de> for ChannelInformation[src]

impl Serialize for ChannelInformation[src]

Auto Trait Implementations

impl RefUnwindSafe for ChannelInformation

impl Send for ChannelInformation

impl Sync for ChannelInformation

impl Unpin for ChannelInformation

impl UnwindSafe for ChannelInformation

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Response for T where
    T: DeserializeOwned
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,