(&mut self, path: &str)
| 1542 | } |
| 1543 | |
| 1544 | fn del_crdt_path_trunk(&mut self, path: &str) -> PristineResult<()> { |
| 1545 | let mut table = self.txn.open_table(PATH_TRUNK)?; |
| 1546 | table.remove(path)?; |
| 1547 | Ok(()) |
| 1548 | } |
| 1549 | |
| 1550 | fn put_crdt_branch(&mut self, key: &[u8; 12], value: &[u8; 24]) -> PristineResult<()> { |
| 1551 | let mut table = self.txn.open_table(BRANCHES)?; |
no test coverage detected