Struct twitch_api2::tmi::Chatters[][src]

pub struct Chatters {
    pub broadcaster: Vec<Nickname>,
    pub vips: Vec<Nickname>,
    pub moderators: Vec<Nickname>,
    pub staff: Vec<Nickname>,
    pub admins: Vec<Nickname>,
    pub global_mods: Vec<Nickname>,
    pub viewers: Vec<Nickname>,
}
This is supported on crate feature tmi only.

List of "rank"s and what users are in them. A user can only be in one

Fields

broadcaster: Vec<Nickname>

Broadcaster, can (probably) only be one

vips: Vec<Nickname>

VIPS in the chat, have the VIP badge and are set with /vip username

moderators: Vec<Nickname>

Moderators in the chat, have a moderator badge and are set with /mod username

staff: Vec<Nickname>

Twitch Staff in the chat, have a staff badge.

admins: Vec<Nickname>

Twitch Admins in the chat, have an admin badge, akin to Chatters::global_mods.

global_mods: Vec<Nickname>

Twitch Global Moderators in the chat, have an admin badge, akin to Chatters::global_mods.

viewers: Vec<Nickname>

Regular viewer in the chat, includes followers and subscribers.

Trait Implementations

impl Debug for Chatters[src]

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

impl Serialize for Chatters[src]

Auto Trait Implementations

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> Same<T> for T

type Output = T

Should always be Self

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

impl<T> WithSubscriber for T[src]