pub trait SpawnProcess {
    // Required method
    fn spawn_process(&mut self, exe_name: *const u8) -> Box<dyn Init>;
}
Expand description

Required Methods§

source

fn spawn_process(&mut self, exe_name: *const u8) -> Box<dyn Init>

| Spawn a child process returning pointer | to its Init interface. |

Implementors§