Set a configuration option
(self, key: &str, value: &ScalarValue)
| 160 | |
| 161 | /// Set a configuration option |
| 162 | pub fn set(self, key: &str, value: &ScalarValue) -> Self { |
| 163 | self.set_str(key, &value.to_string()) |
| 164 | } |
| 165 | |
| 166 | /// Set a boolean configuration option |
| 167 | pub fn set_bool(self, key: &str, value: bool) -> Self { |