What is the idiomatic way to get a dereferenced copy (in case of Copy trait) of a value from a hashmap or other collection that returns a Option<&Value> where Value: Copy?
Do I have to match
match collection.get(key) {
None => None,
Some(v) => Some(*v),
}