(&self, inode: u64)
| 1161 | } |
| 1162 | |
| 1163 | fn get_crdt_inode_trunk(&self, inode: u64) -> PristineResult<Option<[u8; 12]>> { |
| 1164 | use crate::crdt::tables::INODE_TRUNK; |
| 1165 | let table = crdt_table_opt!(self, INODE_TRUNK); |
| 1166 | let result = table.get(inode)?.map(|v| *v.value()); |
| 1167 | Ok(result) |
| 1168 | } |
| 1169 | |
| 1170 | fn get_crdt_branch( |
| 1171 | &self, |