Closed
Description
Introduced in #38866 this is a tracking issue for the Child::try_wait
method.
This method attempts to wait for a child and collect its status but does not block. Questions for stabilization include:
- Is the method name suitable?
- Is the return type suitable? (
io::Result<T>
vsio::Result<Option<T>>
)