Check if an inode has been recorded.
(&self, inode: &Inode)
| 357 | |
| 358 | /// Check if an inode has been recorded. |
| 359 | pub fn is_inode_recorded(&self, inode: &Inode) -> bool { |
| 360 | self.recorded_inodes.contains_key(inode) |
| 361 | } |
| 362 | |
| 363 | /// Update the largest file size if this file is larger. |
| 364 | /// |
nothing calls this directly
no test coverage detected