Returns the total number of files affected (modified + added + deleted).
(&self)
| 520 | |
| 521 | /// Returns the total number of files affected (modified + added + deleted). |
| 522 | pub fn file_count(&self) -> usize { |
| 523 | self.modified.len() + self.added.len() + self.deleted.len() |
| 524 | } |
| 525 | |
| 526 | /// Returns all affected file paths in a single iterator. |
| 527 | /// |