(
&mut self,
branch_key: &[u8; 12],
leaf_key: &[u8; 12],
)
| 1628 | } |
| 1629 | |
| 1630 | fn put_crdt_branch_leaf( |
| 1631 | &mut self, |
| 1632 | branch_key: &[u8; 12], |
| 1633 | leaf_key: &[u8; 12], |
| 1634 | ) -> PristineResult<()> { |
| 1635 | let mut table = self.txn.open_multimap_table(BRANCH_LEAVES)?; |
| 1636 | table.insert(branch_key, leaf_key)?; |
| 1637 | Ok(()) |
| 1638 | } |
| 1639 | |
| 1640 | fn put_crdt_branch_vertex( |
| 1641 | &mut self, |