(&self)
| 436 | } |
| 437 | |
| 438 | fn get_driver_path_in_cache(&self) -> Result<PathBuf, Error> { |
| 439 | Ok(compose_driver_path_in_cache( |
| 440 | self.get_cache_path()?.unwrap_or_default(), |
| 441 | self.driver_name, |
| 442 | self.get_os(), |
| 443 | self.get_platform_label(), |
| 444 | self.get_driver_version(), |
| 445 | )) |
| 446 | } |
| 447 | |
| 448 | fn get_config(&self) -> &ManagerConfig { |
| 449 | &self.config |
nothing calls this directly
no test coverage detected