(&mut self, path: &str, trunk_key: &[u8; 12])
| 1536 | } |
| 1537 | |
| 1538 | fn put_crdt_path_trunk(&mut self, path: &str, trunk_key: &[u8; 12]) -> PristineResult<()> { |
| 1539 | let mut table = self.txn.open_table(PATH_TRUNK)?; |
| 1540 | table.insert(path, trunk_key)?; |
| 1541 | Ok(()) |
| 1542 | } |
| 1543 | |
| 1544 | fn del_crdt_path_trunk(&mut self, path: &str) -> PristineResult<()> { |
| 1545 | let mut table = self.txn.open_table(PATH_TRUNK)?; |
no test coverage detected