[][src]Struct twitchchat::commands::Notice

pub struct Notice {
    pub tags: Tags,
    pub channel: String,
    pub message: String,
}

General notices from the server.

Fields

tags: Tags

IRC tags

channel: String

The channel this event happened on

message: String

The message from the server

Methods

impl Notice[src]

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

The channel this event happened on

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

The message from the server

impl Notice[src]

pub fn msg_id(&self) -> MessageId[src]

A message ID string. Can be used for i18ln. Valid values: see Twitch IRC: msg-id Tags.

Trait Implementations

impl Tag for Notice[src]

impl PartialEq<Notice> for Notice[src]

impl From<Message> for Notice[src]

impl Clone for Notice[src]

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

Performs copy-assignment from source. Read more

impl Debug for Notice[src]

Auto Trait Implementations

impl Send for Notice

impl Sync for Notice

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.