(&self, v: &mut V, key: &str, description: &'static str)
| 197 | |
| 198 | impl ConfigField for ExplainFormat { |
| 199 | fn visit<V: Visit>(&self, v: &mut V, key: &str, description: &'static str) { |
| 200 | v.some(key, self, description) |
| 201 | } |
| 202 | |
| 203 | fn set(&mut self, _: &str, value: &str) -> Result<()> { |
| 204 | *self = ExplainFormat::from_str(value)?; |