(&mut self)
| 253 | |
| 254 | impl Drop for ChildGuard { |
| 255 | fn drop(&mut self) { |
| 256 | kill_child_process_tree(&mut self.child); |
| 257 | let _ = self.child.kill(); |
| 258 | let _ = self.child.wait(); |
| 259 | } |
| 260 | } |
| 261 | |
| 262 | #[cfg(windows)] |
nothing calls this directly
no test coverage detected