[][src]Struct twitchchat::irc::Prefix

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

Prefix is the sender of a message

Implementations

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

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

Was this message from the server?

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

Was this message from a user?

pub fn get_raw_prefix(&self) -> &'a str[src]

Get the full, raw string

pub fn get_nick(&self) -> Option<&'a str>[src]

Get the nickname of this prefix, if it was sent by a user

Trait Implementations

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

Auto Trait Implementations

impl<'a> RefUnwindSafe for Prefix<'a>

impl<'a> Send for Prefix<'a>

impl<'a> Sync for Prefix<'a>

impl<'a> Unpin for Prefix<'a>

impl<'a> UnwindSafe for Prefix<'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<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.