(&self)
| 404 | } |
| 405 | |
| 406 | fn get_driver_path_in_cache(&self) -> Result<PathBuf, Error> { |
| 407 | Ok(compose_driver_path_in_cache( |
| 408 | self.get_cache_path()?.unwrap_or_default(), |
| 409 | self.driver_name, |
| 410 | self.get_os(), |
| 411 | self.get_platform_label(), |
| 412 | self.get_driver_version(), |
| 413 | )) |
| 414 | } |
| 415 | |
| 416 | fn get_config(&self) -> &ManagerConfig { |
| 417 | &self.config |
nothing calls this directly
no test coverage detected