pub trait Spawn { // Required method fn spawn( &mut self, new_exe_name: &String, argv0_path: Box<&Path>, pid: &mut i32 ) -> i32; }
| Spawn process and return socket file | descriptor for communicating with | it. |