Apply `CREATE_NO_WINDOW` to a `std::process::Command` on Windows.
| 10 | |
| 11 | /// Apply `CREATE_NO_WINDOW` to a `std::process::Command` on Windows. |
| 12 | pub trait NoWindowExt { |
| 13 | fn no_window(&mut self) -> &mut Self; |
| 14 | } |
| 15 | |
| 16 | impl NoWindowExt for std::process::Command { |
| 17 | #[cfg(windows)] |
nothing calls this directly
no outgoing calls
no test coverage detected