Skip to main content

ConfigValueLookup

Trait ConfigValueLookup 

Source
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§

Source

fn get_config_value(&self, key: &str) -> Option<String>

Returns the current storage string for key.

Implementations on Foreign Types§

Source§

impl ConfigValueLookup for BTreeMap<String, String>

Source§

impl ConfigValueLookup for HashMap<String, String>

Implementors§