- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这个问题在这里已经有了答案:
Why doesn't Rust support trait object upcasting?
(4 个回答)
Can I cast between two traits?
(5 个回答)
How do I convert a Vec<T> to a Vec<U> without copying the vector?
(2 个回答)
1年前关闭。
我试过this post使用 AsBase
特质,但不能完全举出一个最小的例子。而且由于那个帖子有点旧,缺少dyn
有时会有点困惑。
这是我认为我可以做的:
trait Entity {}
trait Part: Entity {}
trait System {
fn parts(&self) -> &Vec<Box<dyn Entity>>; // This is the specification
}
struct System32 {
parts: Vec<Box<dyn Part>>, // But this is what I have
}
impl System for System32 {
fn parts(&self) -> &Vec<Box<dyn Entity>> {
&self.parts // error: expected trait Entity, found trait Part
// I've also tried:
// &self.parts as &Vec<Box<dyn Entity>>
// error: an `as` expression can only be used to convert between
// primitive types or to coerce to a specific trait object
}
}
这甚至可能吗?如果是,那么我该如何进行类型转换?
最佳答案
Is this even possible?
trait B: A
表示“B 需要 A”多于“B 扩展 A”。
&Vec
.
Box<dyn Entity>
和
Box<dyn Part>
是完全不同的值(value)观。
B
的 vtable不嵌入
A
的 vtable ,您不能只说“这现在是指向 A 的指针”,因为它绝对不是 [0]。
Box<dyn Part>
开始至
Box<dyn Entity>
是一个完整的值(value)转换,而不是对值(value)的就地重新解释为不同的类型。
Box
,以及一个新的
Vec
,这意味着您不能只返回对现有
Vec
的引用声称它是您想要的类型,
Vec
的内容本身需要改变。
关于rust - 如何将 &Vec<Box<dyn Child>> 转换为 &Vec<Box<dyn Base>> where trait Child : Base {}?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63239346/
我对下面的生命周期发生了什么感到困惑: struct Foo{} impl Foo { fn foo(&self, _s: &str) {} } fn main() { let foo
这个问题在这里已经有了答案: How to convert a boxed trait into a trait reference? (2 个答案) 关闭去年。 我正在尝试获取 &dyn T来自B
这个问题在这里已经有了答案: Why doesn't Rust support trait object upcasting? (4 个回答) 1年前关闭。 我有一个库需要实现特定特征( TQDisp
我有一个接收 Box 的函数并需要将其转换为 Rc在线程内共享只读所有权。 用Box一些T: Sized ,我们可以做到Rc::new(*my_box) ,但不幸的是that doesn't work
我可以接受 Box 吗?在接受 Box 的地方?如果是,如何?如果不是,为什么,还有比以下示例更优雅的方法吗? #![allow(unused)] use std::error::Error as S
这个问题在这里已经有了答案: Why doesn't Rust support trait object upcasting? (4 个回答) 2年前关闭。 如果我有 Box , 我可以返回 &dyn
我无法将参数传递给 fn。 trait T {} struct S { others: Vec>> } impl S { fn bar(&self) { for o i
在我的程序中,在辅助线程上执行了一些操作及其结果:Result>被发送回主线程。这是非常合理的错误有 Send要求,所以实际类型是Result> .我还加了 Sync能够使用 Box from方法(仅
我有一个 Vec>作为输入,我想将其元素存储在 Vec>> .最好的方法是什么? 我试过: use std::cell::RefCell; use std::rc::Rc; trait Trait {
use std::sync::Arc; pub type A = Arc Result + Send + Sync>; pub struct B { a: A, } 给 Compilin
这个问题在这里已经有了答案: Why doesn't Rust support trait object upcasting? (4 个回答) Can I cast between two trait
读完the subtyping chapter of the Nomicon ,我无法理解类型参数的协方差。特别是对于 Box类型,描述为:T is covariant . 但是,如果我写这段代码:
我尝试在 vs 包管理器中安装第三方包时反复出现此错误, Unable to resolve dependency 'openssl.v120.windesktop.msvcstl.dyn.rt-dy
我有以下简化代码。 use async_trait::async_trait; // 0.1.36 use std::error::Error; #[async_trait] trait Metric
我有以下简化的代码。 use async_trait::async_trait; // 0.1.36 use std::error::Error; #[async_trait] trait Metri
我正在尝试在线程之间共享一个函数,可以用另一个函数调用它: fn main() { let on_virtual_tun_write = std::sync::Arc::new(|f: &dy
我最近看过使用dyn关键字的代码: fn foo(arg: &dyn Display) {} fn bar() -> Box {} 这个语法是什么意思? 最佳答案 TL; DR:这是用于指定特征对象类
我正在创建HashMap>。我可以创建HashMap并插入一个实现MyTrait的结构,但是当我检索MyTrait并尝试使用它时,编译器向我提示: error[E0161]: cannot move
我正在阅读一些代码,它有一个 consume使我可以通过自己的函数 f 的函数. fn consume(self, _timestamp: Instant, len: usize, f: F) ->
我最近看到使用 dyn 关键字的代码: fn foo(arg: &dyn Display) {} fn bar() -> Box {} 这个语法是什么意思? 最佳答案 TL;DR:这是一种用于指定tr
我是一名优秀的程序员,十分优秀!