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
InvalidTokenWhen the token provided is invalid. This is returned when validating a
token through the validate_token function.
ShardBootFailureWhen a shard has completely failed to reboot after resume and/or reconnect attempts.
ShutdownWhen all shards that the client is responsible for have shutdown with an error.
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 Eq for Error[src]
impl Hash for Error[src]
fn hash<__H: Hasher>(&self, __arg_0: &mut __H)[src]
Feeds this value into the given [Hasher]. Read more
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
H: Hasher,
Feeds a slice of this type into the given [Hasher]. Read more
impl PartialEq for Error[src]
fn eq(&self, __arg_0: &Error) -> bool[src]
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &Rhs) -> bool1.0.0[src]
This method tests for !=.
impl Display for Error[src]
fn fmt(&self, f: &mut Formatter) -> FmtResult[src]
Formats the value using the given formatter. Read more