Rust idiomatic binding to wait4

``` use std::process::Command; use wait4::Wait4;

let cmd = Command::new(command);

// ... let mut child = cmd.spawn().unwrap();

let r = child.wait4().unwrap(); ```

Status