Could process::Command implement Send ? #47751
Labels
C-feature-request
Category: A feature request, i.e: not implemented / a PR.
T-libs-api
Relevant to the library API team, which will review and decide on the PR/issue.
Hi,
Currently, we cannot send a
process::Command
to another thread because it does not implementSend
(at least on Unix). The reason is the struct has a raw pointer field:According to @cuviper it's probably possible to implement
Send
manually though. Is this something you would consider?The text was updated successfully, but these errors were encountered: