Closed
Description
std::process::Command
is currently Send
, but not Sync
. While Sync
probably isn't super useful for Command
itself, it does mean that any type that wraps a process::Command
also isn't Sync
even if it might be useful on that type.
Command
currently has a manual impl Send
following #47760 (issue #47751), though from the discussion on users.r-l.o, it sounds like a manual impl Sync
would also be sound. @cuviper not sure if that still holds?
If it does, this seems like a worthwhile impl
to add, simply for the auto-trait implications.