Expand description
Process wait functionality.
Provides async primitives for waiting on child process exit without
consuming the child object. On Linux and Windows, PolledChild
constructs the wait directly from existing Driver
primitives (fd readiness and waitable handles). On macOS,
Driver::new_dyn_process_wait dispatches to the kqueue EVFILT_PROC
mechanism via the ProcessWaitDriver trait.
Structsยง
- Polled
Child - An owned child process with an asynchronous exit wait.