(&self)
| 358 | } |
| 359 | |
| 360 | fn get_driver_path_in_cache(&self) -> Result<PathBuf, Error> { |
| 361 | Ok(compose_driver_path_in_cache( |
| 362 | self.get_cache_path()?.unwrap_or_default(), |
| 363 | self.driver_name, |
| 364 | self.get_os(), |
| 365 | self.get_platform_label(), |
| 366 | self.get_driver_version(), |
| 367 | )) |
| 368 | } |
| 369 | |
| 370 | fn get_config(&self) -> &ManagerConfig { |
| 371 | &self.config |
nothing calls this directly
no test coverage detected