(&mut self, path: &str, trunk_key: &[u8; 12])
| 1584 | } |
| 1585 | |
| 1586 | fn put_crdt_path_trunk(&mut self, path: &str, trunk_key: &[u8; 12]) -> PristineResult<()> { |
| 1587 | let mut table = self.txn.open_table(PATH_TRUNK)?; |
| 1588 | table.insert(path, trunk_key)?; |
| 1589 | Ok(()) |
| 1590 | } |
| 1591 | |
| 1592 | fn del_crdt_path_trunk(&mut self, path: &str) -> PristineResult<()> { |
| 1593 | let mut table = self.txn.open_table(PATH_TRUNK)?; |
no test coverage detected