(&self)
| 163 | } |
| 164 | |
| 165 | fn get_driver_path_in_cache(&self) -> Result<PathBuf, Error> { |
| 166 | Ok(compose_driver_path_in_cache( |
| 167 | self.get_cache_path()?.unwrap_or_default(), |
| 168 | self.driver_name, |
| 169 | self.get_os(), |
| 170 | self.get_platform_label(), |
| 171 | self.get_driver_version(), |
| 172 | )) |
| 173 | } |
| 174 | |
| 175 | fn get_config(&self) -> &ManagerConfig { |
| 176 | &self.config |
nothing calls this directly
no test coverage detected