When using HashMap's get method, I get an Option<&T>, I've encountered it again this time with Option<&String>. I'd like to get an owned value Option<String>. Is this possible without me writing map(|x| x.to_owned())?
I'm just wondering if there's a way to write a blanket implementation for any of the utility traits to achieve that?