(&self, key: &str)
| 216 | } |
| 217 | |
| 218 | pub fn get(&self, key: &str) -> Result<String> { |
| 219 | let option = ConfigOption::from_str(key)?; |
| 220 | self.get_option(option) |
| 221 | } |
| 222 | |
| 223 | pub fn get_all_options(&self) -> Vec<(String, String)> { |
| 224 | self.get_all_config_options() |