ash-flare 2.3.2

Fault-tolerant supervision trees for Rust with distributed capabilities inspired by Erlang/OTP
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Supervisor types and implementation

mod child;
mod error;
mod handle;
mod runtime;
mod spec;

pub use error::SupervisorError;
pub use handle::SupervisorHandle;
pub use spec::SupervisorSpec;