mm1-sup 0.7.23

An Erlang-style actor runtime for Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
use mm1_ask::Reply;
use mm1_core::context::{Fork, InitDone, Linking, Messaging, Quit, Start, Stop, Watching};

pub trait UniformSupContext<Runnable>:
    Fork + InitDone + Linking + Messaging + Quit + Reply + Start<Runnable> + Stop + Watching
{
}
impl<Ctx, Runnable> UniformSupContext<Runnable> for Ctx where
    Ctx: Fork + InitDone + Linking + Messaging + Quit + Reply + Start<Runnable> + Stop + Watching
{
}