作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我无法将参数传递给 fn。
trait T {}
struct S {
others: Vec<Rc<RefCell<dyn T>>>
}
impl S {
fn bar(&self) {
for o in self.others {
foo(&o.borrow());
}
}
}
fn foo(t: &dyn T) {}
编译器告诉我:
error[E0277]: the trait bound `std::cell::Ref<'_, (dyn T + 'static)>: T` is not satisfied
--> src/lib.rs:14:17
|
14 | foo(&o.borrow());
| ^^^^^^^^^^^ the trait `T` is not implemented for `std::cell::Ref<'_, (dyn T + 'static)>`
|
= note: required for the cast to the object type `dyn T`
我认为这就像在 example 中一样在 rust book 中,Rc
被自动取消引用,为了从 RefCell 中获取值,我可以调用 borrow()
。
我也尝试过显式取消引用,但似乎没有任何效果。
如何为 self
中的每个 dyn T
对象调用 foo()
?
最佳答案
如错误所述,Ref<X>
不会自动实现 X
的每个特征实现。对于要强制转换为特征对象的类型,它需要实现该特征。
您可以显式取消引用 Ref
然后再借:
impl S {
fn bar(&self) {
for o in &self.others {
foo(&*o.borrow());
}
}
}
关于rust - 如何将 Rc<RefCell<dyn T>> 传递给想要 &dyn T 的 fn?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60168454/
我是一名优秀的程序员,十分优秀!