(&mut self, kind: ConflictKind, description: impl Into<String>)
| 539 | /// Adds a conflict with a specific kind and description. |
| 540 | #[inline] |
| 541 | pub fn add_simple(&mut self, kind: ConflictKind, description: impl Into<String>) { |
| 542 | self.conflicts |
| 543 | .push(CrdtConflict::new(kind, description.into())); |
| 544 | } |
| 545 | |
| 546 | /// Returns `true` if any conflicts have been recorded. |
| 547 | #[inline] |