(&mut self, path: &str, trunk_key: &[u8; 12])
| 1063 | } |
| 1064 | |
| 1065 | fn put_crdt_path_trunk(&mut self, path: &str, trunk_key: &[u8; 12]) -> PristineResult<()> { |
| 1066 | let mut table = self.txn.open_table(PATH_TRUNK)?; |
| 1067 | table.insert(path, trunk_key)?; |
| 1068 | Ok(()) |
| 1069 | } |
| 1070 | |
| 1071 | fn del_crdt_path_trunk(&mut self, path: &str) -> PristineResult<()> { |
| 1072 | let mut table = self.txn.open_table(PATH_TRUNK)?; |
no test coverage detected