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
use serde::{Deserialize, Serialize};
pub const PS_ITEM_STATE_TOPIC: &str = "ST/";
pub const PS_ITEM_BULK_STATE_TOPIC: &str = "STBULK/";
pub const PS_NODE_STATE_TOPIC: &str = "NODE/ST/";
#[derive(Deserialize, Serialize, Copy, Clone)]
#[serde(rename_all = "lowercase")]
#[repr(u8)]
pub enum NodeStatus {
Running = 1,
Terminating = 0xef,
}
#[derive(Deserialize, Serialize)]
pub struct PsNodeStatus {
status: NodeStatus,
}
impl PsNodeStatus {
#[inline]
pub fn new_running() -> Self {
Self {
status: NodeStatus::Running,
}
}
#[inline]
pub fn new_terminating() -> Self {
Self {
status: NodeStatus::Terminating,
}
}
#[inline]
pub fn status(&self) -> NodeStatus {
self.status
}
}