作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
你能用 Rust 做这样的事情吗?
trait A : forall<T> B<T> { ... }
也就是说,如果我们想要:
impl A for D { ... }
我们必须首先实现:
impl<T> B<T> for D { ... }
最佳答案
没有。 Rust 的类型系统目前不支持涉及更高种类类型的任何特性。但是,它确实支持与您所描述的类似的构造,但仅限于生命周期参数。例如:
trait B<'a> {}
trait A: for<'a> B<'a> {}
struct D;
impl A for D { }
这是一个错误:
error[E0277]: the trait bound `for<'a> D: B<'a>` is not satisfied
--> src/lib.rs:7:6
|
7 | impl A for D { }
| ^ the trait `for<'a> B<'a>` is not implemented for `D`
直到您添加一揽子实现:
impl<'a> B<'a> for D { }
Rust 最终也会为类型添加类似的功能并非不可能,但我预计不会很快。
关于types - 特征可以具有由泛型参数化的超特征吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56329170/
我是一名优秀的程序员,十分优秀!