(&mut self, key: &str, value: bool)
| 405 | } |
| 406 | |
| 407 | fn set_bool(&mut self, key: &str, value: bool) { |
| 408 | self.values.insert(key.to_string(), Value::Bool(value)); |
| 409 | self.persist(); |
| 410 | } |
| 411 | |
| 412 | fn get_string(&self, key: &str, default: &str) -> String { |
| 413 | match self.values.get(key) { |
no test coverage detected