pub trait WaitSpawned {
    // Required method
    fn wait_spawned(&mut self, pid: i32) -> i32;
}

Required Methods§

source

fn wait_spawned(&mut self, pid: i32) -> i32

| Wait for spawned process to exit and | return its exit code. |

Implementors§