Iterate over all change hashes stored on disk. This scans the changes directory and yields the hash of each change file found. The iteration order is not guaranteed. # Performance This method reads the filesystem and should be used sparingly on repositories with many changes. # Example ```rust,ignore for result in store.iter_changes() { match result { Ok(hash) => println!("Found change: {}",
(&self)
| 532 | /// } |
| 533 | /// ``` |
| 534 | pub fn iter_changes(&self) -> impl Iterator<Item = ChangeStoreResult<Hash>> + '_ { |
| 535 | ChangeIterator::new(&self.changes_dir) |
| 536 | } |
| 537 | |
| 538 | /// Count the number of changes stored on disk. |
| 539 | /// |
no outgoing calls