Record that a file was skipped.
(&mut self)
| 633 | |
| 634 | /// Record that a file was skipped. |
| 635 | pub fn record_skipped(&mut self) { |
| 636 | self.files_skipped += 1; |
| 637 | } |
| 638 | |
| 639 | /// Record an error. |
| 640 | pub fn record_error(&mut self, path: String, error: String) { |
no outgoing calls