[][src]Struct twitchchat::messages::Join

pub struct Join<'t> {
    pub name: Cow<'t, str>,
    pub channel: Cow<'t, str>,
}

User join message

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

Fields

name: Cow<'t, str>

Name of the user that joined the channel

channel: Cow<'t, str>

Channel which they joined

Trait Implementations

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

type Owned = Join<'static>

The owned type

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

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

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

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

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

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

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

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

Auto Trait Implementations

impl<'t> RefUnwindSafe for Join<'t>

impl<'t> Send for Join<'t>

impl<'t> Sync for Join<'t>

impl<'t> Unpin for Join<'t>

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