(&mut self)
| 16 | impl NoWindowExt for std::process::Command { |
| 17 | #[cfg(windows)] |
| 18 | fn no_window(&mut self) -> &mut Self { |
| 19 | use std::os::windows::process::CommandExt; |
| 20 | self.creation_flags(CREATE_NO_WINDOW) |
| 21 | } |
| 22 | |
| 23 | #[cfg(not(windows))] |
| 24 | fn no_window(&mut self) -> &mut Self { |
no outgoing calls
no test coverage detected