(
&mut self,
stdout_output: &mut STDOUT,
stderr_output: &mut STDERR,
)
| 198 | } |
| 199 | |
| 200 | fn exec_with_output<STDOUT, STDERR>( |
| 201 | &mut self, |
| 202 | stdout_output: &mut STDOUT, |
| 203 | stderr_output: &mut STDERR, |
| 204 | ) -> Result<(), CommandError> |
| 205 | where |
| 206 | STDOUT: FnMut(String), |
| 207 | STDERR: FnMut(String), |
| 208 | { |
| 209 | self.exec_with_abort(stdout_output, stderr_output, &CommandKiller::never()) |
| 210 | } |
| 211 | |
| 212 | fn exec_with_abort<STDOUT, STDERR>( |
| 213 | &mut self, |
no test coverage detected