supertrees 0.1.2

Supervision trees for Tokio-based services inspired by Erlang/OTP
Documentation
1
2
3
4
5
6
7
8
9
pub mod process_group;

use std::fmt::Debug;

use crate::worker::restartable::Restartable;

pub trait Process: Restartable + Debug {
    fn start(&mut self);
}