(self, path: impl Into<String>)
| 456 | /// Sets the path as the primary entity. |
| 457 | #[inline] |
| 458 | pub fn path(self, path: impl Into<String>) -> Self { |
| 459 | self.entity(ConflictEntity::Path(path.into())) |
| 460 | } |
| 461 | |
| 462 | /// Builds the conflict. |
| 463 | pub fn build(self) -> CrdtConflict { |
no test coverage detected