Add a covered change hash.
(mut self, hash: Hash)
| 616 | |
| 617 | /// Add a covered change hash. |
| 618 | pub fn add_change(mut self, hash: Hash) -> Self { |
| 619 | self.changes_covered.push(hash); |
| 620 | self |
| 621 | } |
| 622 | |
| 623 | /// Set all covered change hashes at once. |
| 624 | pub fn changes_covered(mut self, hashes: Vec<Hash>) -> Self { |
no test coverage detected