(self, driver_name: impl Into<String>)
| 91 | |
| 92 | #[must_use] |
| 93 | pub fn with_driver_name(self, driver_name: impl Into<String>) -> Self { |
| 94 | self.with_state(|state| state.driver_name = driver_name.into()); |
| 95 | self |
| 96 | } |
| 97 | |
| 98 | #[must_use] |
| 99 | pub fn with_driver_version(self, driver_version: impl Into<String>) -> Self { |
no test coverage detected