Method
put_crdt_inode_trunk
(&mut self, inode: u64, trunk_key: &[u8; 12])
Source from the content-addressed store, hash-verified
| 1057 | } |
| 1058 | |
| 1059 | fn put_crdt_inode_trunk(&mut self, inode: u64, trunk_key: &[u8; 12]) -> PristineResult<()> { |
| 1060 | let mut table = self.txn.open_table(INODE_TRUNK)?; |
| 1061 | table.insert(inode, trunk_key)?; |
| 1062 | Ok(()) |
| 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)?; |
Tested by
no test coverage detected