Returns the total number of files affected (modified + added + deleted).
(&self)
| 528 | |
| 529 | /// Returns the total number of files affected (modified + added + deleted). |
| 530 | pub fn file_count(&self) -> usize { |
| 531 | self.modified.len() + self.added.len() + self.deleted.len() |
| 532 | } |
| 533 | |
| 534 | /// Returns all affected file paths in a single iterator. |
| 535 | /// |