(&mut self, name: impl Into<String>, value: impl Into<String>)
| 27 | } |
| 28 | |
| 29 | pub(crate) fn insert(&mut self, name: impl Into<String>, value: impl Into<String>) { |
| 30 | self.settings.insert(name.into(), value.into()); |
| 31 | } |
| 32 | |
| 33 | pub(crate) fn validate(&self) -> Result<()> { |
| 34 | for (name, value) in &self.settings { |
no outgoing calls
no test coverage detected