(&self, path: &str)
| 432 | } |
| 433 | |
| 434 | fn get_trunk_by_path(&self, path: &str) -> Result<Option<TrunkId>, Self::Error> { |
| 435 | Ok(self.path_index.get(path).copied()) |
| 436 | } |
| 437 | |
| 438 | fn get_trunk_by_inode(&self, inode: Inode) -> Result<Option<TrunkId>, Self::Error> { |
| 439 | Ok(self.inode_index.get(&inode).copied()) |
no test coverage detected