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