(&mut self, path: &str)
| 1590 | } |
| 1591 | |
| 1592 | fn del_crdt_path_trunk(&mut self, path: &str) -> PristineResult<()> { |
| 1593 | let mut table = self.txn.open_table(PATH_TRUNK)?; |
| 1594 | table.remove(path)?; |
| 1595 | Ok(()) |
| 1596 | } |
| 1597 | |
| 1598 | fn put_crdt_branch(&mut self, key: &[u8; 12], value: &[u8; 24]) -> PristineResult<()> { |
| 1599 | let mut table = self.txn.open_table(BRANCHES)?; |
no test coverage detected