[][src]Struct libtwitch_rs::channels::Channel

pub struct Channel {
    pub id: i64,
    pub broadcaster_language: String,
    pub created_at: DateTime<UTC>,
    pub display_name: String,
    pub email: Option<String>,
    pub followers: i32,
    pub game: String,
    pub language: String,
    pub logo: String,
    pub mature: Option<bool>,
    pub name: String,
    pub partner: bool,
    pub profile_banner: Option<String>,
    pub profile_banner_background_color: Option<String>,
    pub status: String,
    pub stream_key: Option<String>,
    pub updated_at: DateTime<UTC>,
    pub url: String,
    pub video_banner: Option<String>,
    pub views: i32,
}

Fields

id: i64broadcaster_language: Stringcreated_at: DateTime<UTC>display_name: Stringemail: Option<String>followers: i32game: Stringlanguage: Stringmature: Option<bool>name: Stringpartner: boolprofile_banner: Option<String>profile_banner_background_color: Option<String>status: Stringstream_key: Option<String>updated_at: DateTime<UTC>url: Stringvideo_banner: Option<String>views: i32

Trait Implementations

impl Debug for Channel[src]

impl Deserialize for Channel[src]

Auto Trait Implementations

impl Send for Channel

impl Unpin for Channel

impl Sync for Channel

impl UnwindSafe for Channel

impl RefUnwindSafe for Channel

Blanket Implementations

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

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

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<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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

impl<T> Typeable for T where
    T: Any