Record a skipped path.
(&mut self, path: PathBuf, reason: &str)
| 263 | |
| 264 | /// Record a skipped path. |
| 265 | pub fn skip(&mut self, path: PathBuf, reason: &str) { |
| 266 | self.skipped += 1; |
| 267 | self.skipped_paths.push((path, reason.to_string())); |
| 268 | } |
| 269 | } |
| 270 | |
| 271 | // TrackingOptions |