gpt4 book ai didi

rust - 如何将 Rc> 传递给想要 &dyn T 的 fn?

转载 作者:行者123 更新时间:2023-12-03 11:27:50 26 4
gpt4 key购买 nike

我无法将参数传递给 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/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com