Enum serenity::client::ClientError [] [src]

pub enum ClientError {
    InvalidToken,
    ShardBootFailure,
    Shutdown,
}

An error returned from the Client.

This is always wrapped within the library's generic Error::Client variant.

Variants

When the token provided is invalid. This is returned when validating a token through the validate_token function.

When a shard has completely failed to reboot after resume and/or reconnect attempts.

When all shards that the client is responsible for have shutdown with an error.

Trait Implementations

impl Clone for Error
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for Error
[src]

[src]

Formats the value using the given formatter.

impl Eq for Error
[src]

impl Hash for Error
[src]

[src]

Feeds this value into the given [Hasher]. Read more

1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl PartialEq for Error
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

1.0.0
[src]

This method tests for !=.

impl Display for Error
[src]

[src]

Formats the value using the given formatter. Read more

impl StdError for Error
[src]

[src]

A short description of the error. Read more

1.0.0
[src]

The lower-level cause of this error, if any. Read more