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

*/
pub use actor::*;
pub use interfaces::*;

mod actor;
mod interfaces;

pub enum Actions {
    Authorize,
    Append,
    Create,
    Read,
    Update,
    Delete,
    Compile,
    Compute,
    Consent,
    Transact,
}

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

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;
}