(&self)
| 225 | } |
| 226 | |
| 227 | fn get_driver_path_in_cache(&self) -> Result<PathBuf, Error> { |
| 228 | Ok(compose_driver_path_in_cache( |
| 229 | self.get_cache_path()?.unwrap_or_default(), |
| 230 | self.driver_name, |
| 231 | self.get_os(), |
| 232 | self.get_platform_label(), |
| 233 | self.get_driver_version(), |
| 234 | )) |
| 235 | } |
| 236 | |
| 237 | fn get_config(&self) -> &ManagerConfig { |
| 238 | &self.config |
nothing calls this directly
no test coverage detected