(&self, key: &str, default: bool)
| 383 | } |
| 384 | |
| 385 | fn get_bool(&self, key: &str, default: bool) -> bool { |
| 386 | match self.values.get(key) { |
| 387 | Some(Value::Bool(flag)) => *flag, |
| 388 | _ => default, |
| 389 | } |
| 390 | } |
| 391 | |
| 392 | fn get_timestamps(&self) -> bool { |
| 393 | match self.values.get("timestamps") { |