O6HIGFLTOUHRVPRTNQSH7HSI44PAPLVYGHFSCKQC2M6ZRYZKUCBQC
I24UEJQLCH2SOXA4UHIYWTRDCHSOPU7AFTRUOTX7HZIAV4AZKYEQC
SXEYMYF7P4RZMZ46WPL4IZUTSQ2ATBWYZX7QNVMS3SGOYXYOHAGQC
YN63NUZO4LVJ7XPMURDULTXBVJKW5MVCTZ24R7Z52QMHO3HPDUVQC
// The directory marker is necessarily already there, // since the path is in the tree. if output_item.meta.is_dir() { let path_id = OwnedPathId { parent_inode: inode, basename: SmallString::new(), }; assert_eq!(txn_.get_tree(&path_id, None).unwrap(), Some(&inode)) }
// The directory marker is necessarily already there,
// since the path is in the tree.
if output_item.meta.is_dir() {
let path_id = OwnedPathId {
parent_inode: inode,
basename: SmallString::new(),
};
assert_eq!(txn_.get_tree(&path_id, None).unwrap(), Some(&inode))
}
if output_item.meta.is_dir() { let path_id = OwnedPathId { parent_inode: inode, basename: SmallString::new(), }; txn_.put_tree(&path_id, &inode)?; }
txn_.put_tree(&path_id, &inode)?;
// In case this is a directory, we also need to delete the marker: let file_id_ = OwnedPathId { parent_inode: *inode, basename: SmallString::new(), }; txn.del_tree(&file_id_, Some(&inode))?;
// In case this is a directory, we also need to delete the marker:
let file_id_ = OwnedPathId {
parent_inode: *inode,
txn.del_tree(&file_id_, Some(&inode))?;