to convert a HashMap<&str, &str> into a HashMap<String, String>,
so that we don't need to write .to_string() on every single string in the defaults.
was able to use
```
let pc_defaults: HashMap<String, String> = peach_config_defaults
.iter()
.map(|(key, val)| (key.to_string(), val.to_string()))
.collect();
```
to convert a HashMap<&str, &str> into a HashMap<String, String>,
so that we don't need to write .to_string() on every single string in the defaults.
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
was able to use
to convert a HashMap<&str, &str> into a HashMap<String, String>,
so that we don't need to write .to_string() on every single string in the defaults.
👍 🟢