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
pub use self::{crud::*, power::*, state::*};
pub(crate) mod crud;
pub(crate) mod power;
pub(crate) mod state {
pub trait Stateful<Cnt>: Clone + PartialEq + std::fmt::Debug + std::hash::Hash {
fn active(&self) -> bool;
fn context(&self, state: String) -> Cnt;
fn message(&self, message: String) -> String {
message
}
fn timestamp(&self) -> crate::Timestamp {
crate::Timestamp::new()
}
}
#[derive(Clone, Debug, Hash, PartialEq, serde::Deserialize, serde::Serialize)]
pub struct State<S> {
pub message: String,
pub state: S,
pub timestamp: crate::Timestamp,
}
impl<S> State<S> {
fn constructor(message: String, state: S, timestamp: crate::Timestamp) -> Self {
Self {
message,
state,
timestamp,
}
}
pub fn new(message: String, state: S) -> Self {
Self::constructor(message, state, crate::Timestamp::new())
}
}
impl<S: Default> Default for State<S> {
fn default() -> Self {
Self::new(String::new(), S::default())
}
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_state() {
let actual = State::new("message".to_string(), "test");
let expected = actual.clone();
assert_eq!(actual, expected)
}
}