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?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…