Mark an inode as recorded at a specific position. This prevents duplicate recording of the same inode. # Arguments `inode` - The inode being recorded `position` - The graph position of the inode
(&mut self, inode: Inode, position: Position<Option<NodeId>>)
| 339 | /// * `inode` - The inode being recorded |
| 340 | /// * `position` - The graph position of the inode |
| 341 | pub fn mark_inode_recorded(&mut self, inode: Inode, position: Position<Option<NodeId>>) { |
| 342 | self.recorded_inodes.insert(inode, position); |
| 343 | } |
| 344 | |
| 345 | /// Check if an inode has already been recorded. |
| 346 | /// |