[][src]Struct twitchchat::messages::RoomState

pub struct RoomState<'t> {
    pub tags: Tags<'t>,
    pub channel: Cow<'t, str>,
}

Identifies the channel's chat settings (e.g., slow mode duration).

Fields

tags: Tags<'t>

Tags attached to this message

channel: Cow<'t, str>

Channel this event is happening on

Implementations

impl<'t> RoomState<'t>[src]

pub fn is_emote_only(&self) -> bool[src]

Whether this room is in emote only mode

pub fn is_followers_only(&self) -> Option<FollowersOnly>[src]

Whether this room is in followers only mode

pub fn is_r9k(&self) -> bool[src]

Whether this room is in r9k mode

pub fn room_id(&self) -> Option<u64>[src]

The id of the room this message was sent to

pub fn is_slow_mode(&self) -> Option<u64>[src]

Whether this room is in slow mode

This returns the delay in which each message can be sent

pub fn is_subs_only(&self) -> bool[src]

Whether this room is in subs only mode

Trait Implementations

impl<'t> AsOwned for RoomState<'t>[src]

type Owned = RoomState<'static>

The owned type

impl<'t> Clone for RoomState<'t>[src]

impl<'t> Debug for RoomState<'t>[src]

impl<'de, 't> Deserialize<'de> for RoomState<'t>[src]

impl<'t> From<RoomState<'t>> for AllCommands<'t>[src]

impl<'a: 't, 't> Parse<&'a Message<'t>> for RoomState<'t>[src]

impl<'t> PartialEq<RoomState<'t>> for RoomState<'t>[src]

impl<'t> Serialize for RoomState<'t>[src]

impl<'t> StructuralPartialEq for RoomState<'t>[src]

Auto Trait Implementations

impl<'t> RefUnwindSafe for RoomState<'t>

impl<'t> Send for RoomState<'t>

impl<'t> Sync for RoomState<'t>

impl<'t> Unpin for RoomState<'t>

impl<'t> UnwindSafe for RoomState<'t>

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, U> Into<U> for T where
    U: From<T>, 
[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.