Check if there are any conflicts of any type.
(&self)
| 388 | |
| 389 | /// Check if there are any conflicts of any type. |
| 390 | pub fn has_conflicts(&self) -> bool { |
| 391 | self.has_zombies() || self.has_missing_contexts() || self.has_order_conflicts() |
| 392 | } |
| 393 | |
| 394 | /// Get the total number of conflicts. |
| 395 | pub fn total_conflict_count(&self) -> usize { |
no test coverage detected