标签: rust idioms
说我有以下内容,其中Tag::from返回Result<Tag,&'static str>:
Tag::from
Result<Tag,&'static str>
let upcased = "ABC".to_string(); let chan_vec:Vec<Tag> = upcased.chars().map(|c| Tag::from(&c).unwrap() ).collect();
第二行是我能做的最好的风格吗?