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
/*
   Appellation: Actors
   Context: module
   Creator: FL03 <jo3mccain@icloud.com>
   Description:

*/

pub enum Actions {
    Connect {
        id: String,
        addresses: std::collections::HashSet<String>,
        status: bool,
    },
}

#[derive(Clone, Debug, Hash, PartialEq)]
pub enum ActionStatus<T = String> {
    Acting(T),
    Completed(T),
    Exited(T),
}

pub trait ActorSpec {
    type Actor;
    type Client;
    type Connection;
    type Data;
}

pub trait Actionable {
    type Action;
    type Config;
    type Context;
    type Data;

    fn constructor(action: Self::Action, config: Self::Config, data: Self::Data) -> Self;
    fn determine(&self) -> Result<Self, Box<dyn std::error::Error + Send + Sync + 'static>>
    where
        Self: Sized;
}

#[cfg(test)]
mod tests {

    #[test]
    fn test_module() {
        let f = |x: usize, y: usize| x + y;
        assert_eq!(f(10, 10), 20)
    }
}