[][src]Struct twitchchat::commands::Mode

pub struct Mode {
    pub channel: String,
    pub status: ModeStatus,
    pub user: String,
}

When a user gains or loses moderator (operator) status in a channel.

Fields

channel: String

The channel this event happened on

status: ModeStatus

Whether they lost or gained the status

user: String

Which user was effected by this

Methods

impl Mode[src]

pub fn channel(&self) -> &str[src]

The channel this event happened on

pub fn status(&self) -> ModeStatus[src]

Whether they lost or gained the status

pub fn user(&self) -> &str[src]

Which user was effected by this

Trait Implementations

impl PartialEq<Mode> for Mode[src]

impl From<Message> for Mode[src]

impl Clone for Mode[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for Mode[src]

Auto Trait Implementations

impl Send for Mode

impl Sync for Mode

Blanket Implementations

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

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

type Owned = T

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

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

The type returned in the event of a conversion error.