Get all dependencies and extra_known combined.
(&self)
| 828 | impl HashedChange { |
| 829 | /// Get all dependencies and extra_known combined. |
| 830 | pub fn all_known(&self) -> impl Iterator<Item = &Hash> { |
| 831 | self.dependencies.iter().chain(self.extra_known.iter()) |
| 832 | } |
| 833 | |
| 834 | /// Check if this change has any hunks. |
| 835 | pub fn is_empty(&self) -> bool { |