(&self, f: impl FnOnce())
| 468 | } |
| 469 | |
| 470 | fn print_text(&self, f: impl FnOnce()) { |
| 471 | if self.output_format == ExecOutputFormat::Text { |
| 472 | f(); |
| 473 | } |
| 474 | } |
| 475 | |
| 476 | fn output_patch_if_needed(&self) { |
| 477 | if let Some(ref output_target) = self.output_patch { |
no test coverage detected