[][src]Struct ttv_chat::messages::Notice

pub struct Notice<'a> { /* fields omitted */ }

General notices from the server.

Implementations

impl<'a> Notice<'a>[src]

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

Get the raw message

pub fn tags(&self) -> Tags<'_>[src]

Get a view of parsable tags

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

The channel this event happened on

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

The message from the server

pub fn msg_id(&self) -> Option<MessageId<'_>>[src]

A message ID string. Can be used for i18n.

Valid values: see Twitch IRC: msg-id Tags.

Returns None if this tag wasn't found on the message

Trait Implementations

impl<'a> Clone for Notice<'a>[src]

impl<'a> Debug for Notice<'a>[src]

impl<'a> From<Notice<'a>> for Commands<'a>[src]

impl<'a> FromIrcMessage<'a> for Notice<'a>[src]

type Error = MessageError

An error returned if this message could not be parsed.

fn into_inner(self) -> MaybeOwned<'a>[src]

Consumes the message, returning the raw MaybeOwned<'_>

impl<'a> IntoOwned<'a> for Notice<'a>[src]

type Output = Notice<'static>

The output type

impl<'a> PartialEq<Notice<'a>> for Notice<'a>[src]

impl<'a> StructuralPartialEq for Notice<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for Notice<'a>

impl<'a> Send for Notice<'a>

impl<'a> Sync for Notice<'a>

impl<'a> Unpin for Notice<'a>

impl<'a> UnwindSafe for Notice<'a>

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> From<T> for T[src]

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

impl<'a, T> IntoIrcMessage<'a> for T where
    T: 'a + FromIrcMessage<'a>, 
[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.