(&self, entry: &DirEntry)
| 1029 | } |
| 1030 | |
| 1031 | fn is_driver(&self, entry: &DirEntry) -> bool { |
| 1032 | self.is_in_cache(entry, &self.get_driver_name_with_extension()) |
| 1033 | } |
| 1034 | |
| 1035 | fn is_in_cache(&self, entry: &DirEntry, file_name: &str) -> bool { |
| 1036 | let is_file = entry.path().is_file(); |
no test coverage detected