dict_with_env

Function dict_with_env 

Source
pub fn dict_with_env<E, K, V>(
    env: E,
    additional: HashMap<K, V>,
) -> HashMap<K, V>
where E: AsEnvLike<K, V>, K: Hash + Eq + for<'a> From<&'a str>, V: for<'a> From<&'a str>,
Expand description

Python dict() function with environment merging (generic version)

This merges environment-like collections with additional key-value pairs