Enum serenity::model::event::GatewayEvent[][src]

pub enum GatewayEvent {
    Dispatch(u64Event),
    Heartbeat(u64),
    Reconnect,
    InvalidateSession(bool),
    Hello(u64),
    HeartbeatAck,
}

Variants

Whether the session can be resumed.

Trait Implementations

impl Debug for GatewayEvent
[src]

Formats the value using the given formatter. Read more

impl Clone for GatewayEvent
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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

Deserialize this value from the given Serde deserializer. Read more

Auto Trait Implementations