Returns `true` if there are any conflicts requiring user action.
(&self)
| 605 | |
| 606 | /// Returns `true` if there are any conflicts requiring user action. |
| 607 | pub fn has_user_actionable(&self) -> bool { |
| 608 | self.conflicts.iter().any(|c| c.requires_user_action()) |
| 609 | } |
| 610 | |
| 611 | /// Returns conflicts that require user action. |
| 612 | pub fn user_actionable(&self) -> impl Iterator<Item = &CrdtConflict> { |
nothing calls this directly
no test coverage detected