[][src]Struct ttv_chat::messages::Join

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

User join message

The happens when a user (yourself included) joins a channel

Implementations

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

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

Get the raw message

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

Name of the user that joined the channel

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

Channel which they joined

Trait Implementations

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

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

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

impl<'a> FromIrcMessage<'a> for Join<'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 Join<'a>[src]

type Output = Join<'static>

The output type

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

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

Auto Trait Implementations

impl<'a> RefUnwindSafe for Join<'a>

impl<'a> Send for Join<'a>

impl<'a> Sync for Join<'a>

impl<'a> Unpin for Join<'a>

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