use std::{
error::Error as StdError,
fmt::{
Display,
Formatter,
Result as FmtResult
}
};
#[allow(clippy::enum_variant_names)]
#[derive(Clone, Debug, Eq, Hash, PartialEq)]
#[non_exhaustive]
pub enum Error {
InvalidToken,
ShardBootFailure,
Shutdown,
}
impl Display for Error {
fn fmt(&self, f: &mut Formatter<'_>) -> FmtResult {
match self {
Error::InvalidToken => f.write_str("The provided token was invalid"),
Error::ShardBootFailure => f.write_str("Failed to (re-)boot a shard"),
Error::Shutdown => f.write_str("The clients shards shutdown"),
}
}
}
impl StdError for Error {
fn description(&self) -> &str {
match *self {
Error::InvalidToken => "The provided token was invalid",
Error::ShardBootFailure => "Failed to (re-)boot a shard",
Error::Shutdown => "The clients shards shutdown",
}
}
}