[][src]Struct libtwitch_rs::kraken::streams::Stream

pub struct Stream {
    pub id: i64,
    pub game: String,
    pub viewers: i32,
    pub video_height: i32,
    pub average_fps: i32,
    pub delay: i32,
    pub created_at: DateTime<Utc>,
    pub is_playlist: bool,
    pub preview: HashMap<String, String>,
    pub channel: Channel,
}

Fields

id: i64game: Stringviewers: i32video_height: i32average_fps: i32delay: i32created_at: DateTime<Utc>is_playlist: boolpreview: HashMap<String, String>channel: Channel

Trait Implementations

impl Debug for Stream[src]

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

Auto Trait Implementations

impl RefUnwindSafe for Stream

impl Send for Stream

impl Sync for Stream

impl Unpin for Stream

impl UnwindSafe for Stream

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