(&self, entry: &DirEntry)
| 1051 | } |
| 1052 | |
| 1053 | fn is_driver(&self, entry: &DirEntry) -> bool { |
| 1054 | self.is_in_cache(entry, &self.get_driver_name_with_extension()) |
| 1055 | } |
| 1056 | |
| 1057 | fn is_in_cache(&self, entry: &DirEntry, file_name: &str) -> bool { |
| 1058 | let is_file = entry.path().is_file(); |
no test coverage detected