(&self, err: io::Error, ostream: Ostream, data_kind: &str)
| 619 | } |
| 620 | |
| 621 | fn io_read_err(&self, err: io::Error, ostream: Ostream, data_kind: &str) -> Error { |
| 622 | Error::proc( |
| 623 | self, |
| 624 | &format_args!("Failed to read {} from `{}`: {}", data_kind, ostream, err), |
| 625 | ) |
| 626 | } |
| 627 | |
| 628 | fn log_output(&self, ostream: Ostream, output: &dyn fmt::Display) { |
| 629 | if let Some(level) = self.cmd.0.log_cmd { |
no outgoing calls
no test coverage detected