pub trait ConfigValueLookup {
// Required method
fn get_config_value(&self, key: &str) -> Option<String>;
}Expand description
Lookup used by configuration normalizers and dependency validators.
Required Methods§
Sourcefn get_config_value(&self, key: &str) -> Option<String>
fn get_config_value(&self, key: &str) -> Option<String>
Returns the current storage string for key.