Report an error related to a path.
(&mut self, path: &PathBuf, err: &E)
| 179 | |
| 180 | /// Report an error related to a path. |
| 181 | fn path_error<E: Error>(&mut self, path: &PathBuf, err: &E) { |
| 182 | self.errors += 1; |
| 183 | println!("{}: {}", path.to_string_lossy(), err); |
| 184 | } |
| 185 | |
| 186 | /// Report on the next in-order job, if it's done. |
| 187 | fn report_job(&self) -> bool { |