(self, driver_version: impl Into<String>)
| 97 | |
| 98 | #[must_use] |
| 99 | pub fn with_driver_version(self, driver_version: impl Into<String>) -> Self { |
| 100 | self.with_state(|state| state.driver_version = driver_version.into()); |
| 101 | self |
| 102 | } |
| 103 | |
| 104 | #[must_use] |
| 105 | pub fn with_default_image(self, default_image: impl Into<String>) -> Self { |
nothing calls this directly
no test coverage detected