Set a boolean configuration option
(self, key: &str, value: bool)
| 165 | |
| 166 | /// Set a boolean configuration option |
| 167 | pub fn set_bool(self, key: &str, value: bool) -> Self { |
| 168 | self.set_str(key, &value.to_string()) |
| 169 | } |
| 170 | |
| 171 | /// Set a generic `u64` configuration option |
| 172 | pub fn set_u64(self, key: &str, value: u64) -> Self { |