[][src]Struct ttv_chat::messages::Reconnect

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

Signals that you should reconnect and rejoin channels after a restart.

Twitch IRC processes occasionally need to be restarted. When this happens, clients that have requested the IRC v3 twitch.tv/commands capability are issued a RECONNECT. After a short time, the connection is closed. In this case, reconnect and rejoin channels that were on the connection, as you would normally.

Implementations

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

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

Get the raw message

Trait Implementations

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

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

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

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

type Output = Reconnect<'static>

The output type

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

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

Auto Trait Implementations

impl<'a> RefUnwindSafe for Reconnect<'a>

impl<'a> Send for Reconnect<'a>

impl<'a> Sync for Reconnect<'a>

impl<'a> Unpin for Reconnect<'a>

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