[][src]Struct twitchchat::messages::Reconnect

pub struct Reconnect {}

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.

Trait Implementations

impl AsOwned for Reconnect[src]

type Owned = Self

The owned type

impl Clone for Reconnect[src]

impl Copy for Reconnect[src]

impl Debug for Reconnect[src]

impl<'de> Deserialize<'de> for Reconnect[src]

impl<'a: 't, 't> Extract<'a, &'a Reconnect> for &'a AllCommands<'t>[src]

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

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

impl PartialEq<Reconnect> for Reconnect[src]

impl Serialize for Reconnect[src]

impl StructuralPartialEq for Reconnect[src]

Auto Trait Implementations

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.