contained-actors 0.1.3

contained is a research project implementing the proposed harmonic runtime for orchestrating cloud-native systems
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/*
    Appellation: primitives <module>
    Contrib: FL03 <jo3mccain@icloud.com>
    Description: ... summary ...
*/
pub use self::{constants::*, types::*};

pub(crate) mod constants {}

pub(crate) mod types {

    /// Type alias for a [Result]
    pub type Resultant<T = (), E = String> = Result<T, E>;
}