(
&mut self,
branch_key: &[u8; 12],
leaf_key: &[u8; 12],
)
| 1107 | } |
| 1108 | |
| 1109 | fn put_crdt_branch_leaf( |
| 1110 | &mut self, |
| 1111 | branch_key: &[u8; 12], |
| 1112 | leaf_key: &[u8; 12], |
| 1113 | ) -> PristineResult<()> { |
| 1114 | let mut table = self.txn.open_multimap_table(BRANCH_LEAVES)?; |
| 1115 | table.insert(branch_key, leaf_key)?; |
| 1116 | Ok(()) |
| 1117 | } |
| 1118 | |
| 1119 | fn put_crdt_branch_vertex( |
| 1120 | &mut self, |