(&mut self, path: &str)
| 1069 | } |
| 1070 | |
| 1071 | fn del_crdt_path_trunk(&mut self, path: &str) -> PristineResult<()> { |
| 1072 | let mut table = self.txn.open_table(PATH_TRUNK)?; |
| 1073 | table.remove(path)?; |
| 1074 | Ok(()) |
| 1075 | } |
| 1076 | |
| 1077 | fn put_crdt_branch(&mut self, key: &[u8; 12], value: &[u8; 24]) -> PristineResult<()> { |
| 1078 | let mut table = self.txn.open_table(BRANCHES)?; |
no test coverage detected