- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我希望这两个代码示例的结果相同:
let maybe_string = Some(String::from("foo"));
let string = if let Some(ref value) = maybe_string { value } else { "none" };
let maybe_string = Some(String::from("foo"));
let string = maybe_string.as_ref().unwrap_or("none");
第二个示例给我一个错误:
error[E0308]: mismatched types
--> src/main.rs:3:50
|
3 | let string = maybe_string.as_ref().unwrap_or("none");
| ^^^^^^ expected struct `std::string::String`, found str
|
= note: expected type `&std::string::String`
found type `&'static str`
最佳答案
因为这就是 Option::as_ref
定义:
impl<T> Option<T> {
fn as_ref(&self) -> Option<&T>
}
既然你有一个 Option<String>
,那么结果类型必须是Option<&String>
.
相反,您可以添加 String::as_str
:
maybe_string.as_ref().map(String::as_str).unwrap_or("none");
或者更短的:
maybe_string.as_ref().map_or("none", String::as_str);
从 Rust 1.40 开始,您还可以使用 Option::as_deref
.
maybe_string.as_deref().unwrap_or("none");
另见:
关于string - 为什么 Option<String>.as_ref() 不取消对 Option<&str> 的引用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44163624/
在我的代码中,我有很多带有 Option 的结构在他们里面。我需要在很多地方与他们一起工作,所以我的代码中充斥着像 car.engine.as_ref().unwrap() 这样的结构访问。 .这对代
在 Rust 中以更有意义的方式对 as_ref.unwrap() 上的序列重新排序的惯用方式是什么?我有一组从数据库返回的值,并按以下方式处理它们: pub fn get_results(resul
我在我的代码中使用了新的通用转换特征,但体验到的人体工学效果有所下降。有问题的代码实现了 AsRef for [Ascii]正如您在示例中所见。 现在我想使用 v.as_ref()在assert_eq
有没有办法在不使用&Box的情况下对as_ref进行模式匹配?我使用的是稳定的Rust,因此的答案不能涉及box_patterns 。 本质上,我有这样的代码: enum Foo { Thin
我希望这两个代码示例的结果相同: let maybe_string = Some(String::from("foo")); let string = if let Some(ref value) =
我是一名优秀的程序员,十分优秀!