1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
use std::error::Error as StdError;
use std::fmt::{Display, Formatter, Result as FmtResult};
#[allow(enum_variant_names)]
#[derive(Clone, Debug, Eq, Hash, PartialEq)]
pub enum Error {
InvalidToken,
ShardBootFailure,
Shutdown,
}
impl Display for Error {
fn fmt(&self, f: &mut Formatter) -> FmtResult { f.write_str(self.description()) }
}
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",
}
}
}