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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
use std::fmt;
#[derive(Debug, Copy, Clone, PartialEq)]
pub enum ConnectionState {
Init,
New,
Checking,
Connected,
Completed,
Failed,
Disconnected,
Closed,
}
impl Default for ConnectionState {
fn default() -> Self {
ConnectionState::Init
}
}
impl fmt::Display for ConnectionState {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let s = match *self {
ConnectionState::Init => "Init",
ConnectionState::New => "New",
ConnectionState::Checking => "Checking",
ConnectionState::Connected => "Connected",
ConnectionState::Completed => "Completed",
ConnectionState::Failed => "Failed",
ConnectionState::Disconnected => "Disconnected",
ConnectionState::Closed => "Closed",
};
write!(f, "{}", s)
}
}
#[derive(PartialEq, Copy, Clone)]
pub enum GatheringState {
New = 0,
Gathering = 1,
Complete = 2,
}
impl From<u8> for GatheringState {
fn from(v: u8) -> Self {
match v {
0 => GatheringState::New,
1 => GatheringState::Gathering,
_ => GatheringState::Complete,
}
}
}
impl Default for GatheringState {
fn default() -> Self {
GatheringState::New
}
}
impl fmt::Display for GatheringState {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let s = match *self {
GatheringState::New => "new",
GatheringState::Gathering => "gathering",
GatheringState::Complete => "complete",
};
write!(f, "{}", s)
}
}