Enum serenity::prelude::GatewayError
[−]
[src]
pub enum GatewayError {
BuildingUrl,
Closed(Option<CloseData>),
ExpectedHello,
HeartbeatFailed,
InvalidAuthentication,
InvalidHandshake,
InvalidOpCode,
InvalidShardData,
NoAuthentication,
NoSessionId,
OverloadedShard,
ReconnectFailure,
}An error that occurred while attempting to deal with the gateway.
Note that - from a user standpoint - there should be no situation in which you manually handle these.
Variants
BuildingUrlThere was an error building a URL.
Closed(Option<CloseData>)The connection closed, potentially uncleanly.
ExpectedHelloExpected a Hello during a handshake
HeartbeatFailedWhen there was an error sending a heartbeat.
InvalidAuthenticationWhen invalid authentication (a bad token) was sent in the IDENTIFY.
InvalidHandshakeExpected a Ready or an InvalidateSession
InvalidOpCodeAn indicator that an unknown opcode was received from the gateway.
InvalidShardDataWhen invalid sharding data was sent in the IDENTIFY.
Examples
Sending a shard ID of 5 when sharding with 3 total is considered invalid.
NoAuthenticationWhen no authentication was sent in the IDENTIFY.
NoSessionIdWhen a session Id was expected (for resuming), but was not present.
OverloadedShardWhen a shard would have too many guilds assigned to it.
Examples
When sharding 5500 guilds on 2 shards, at least one of the shards will have over the maximum number of allowed guilds per shard.
This limit is currently 2500 guilds per shard.
ReconnectFailureFailed to reconnect after a number of attempts.
Trait Implementations
impl Clone for Error[src]
fn clone(&self) -> Error[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl Debug for Error[src]
impl Display for Error[src]
fn fmt(&self, f: &mut Formatter) -> FmtResult[src]
Formats the value using the given formatter. Read more