Record a skipped file. # Arguments `path` - The path of the file that was skipped # Example ```rust use atomic_core::output::repo::OutputOutcome; let mut outcome = OutputOutcome::new(); outcome.record_skip("unchanged.txt"); assert_eq!(outcome.files_skipped(), 1); ```
(&mut self, path: impl Into<String>)
| 268 | /// assert_eq!(outcome.files_skipped(), 1); |
| 269 | /// ``` |
| 270 | pub fn record_skip(&mut self, path: impl Into<String>) { |
| 271 | self.skipped.push(path.into()); |
| 272 | } |
| 273 | |
| 274 | /// Record redundant edges found during output. |
| 275 | /// |