- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想创建自己的特征,它应该基于带有i32
的索引生成一个f32
。我尝试了以下方法,但似乎确实可行:
use std::ops::Index;
// trait by value
pub trait MyTrait:
Index<f32, Output=i32> {
}
虽然按值传递
f32
可能是一个好主意,但对于更复杂的类型,我宁愿传递对值的引用,因此我尝试了以下操作:
// trait by reference, not compiling
pub trait MyTrait:
Index<&f32, Output=i32> {
}
包括这个定义给我一个
error[E0106]: missing lifetime specifier
。我得到了这个变体工作:
// trait by reference, compiling
pub trait MyTrait<'a>:
Index<&'a f32, Output=i32> {
}
问题是:尽管这种方法有效,但是这意味着实现
MyTrait
的任何类型都需要一个显式的生存期参数。
Index
特性,则不需要任何生命周期:
struct Test {
value: i32
}
impl Index<&f32> for Test {
type Output = i32;
fn index(&self, _key: &f32) -> &Self::Output {
&self.value
}
}
问题1:为什么在特征定义中需要额外的生命,为什么不能忽略它?
最佳答案
Why do I need the additional lifetime in the definition of the trait, why can't it be elided?
Can I define the trait in such a way as to avoid having to introduce the lifetime?
std::ops::Index
一样使用通用参数:
use std::ops::Index;
pub trait MyTrait<T>: Index<T, Output = i32> {}
struct Test {
value: i32,
}
impl Index<&f32> for Test {
type Output = i32;
fn index(&self, _key: &f32) -> &Self::Output {
&self.value
}
}
impl MyTrait<&f32> for Test {}
关于rust - 为什么生命周期省略对特质不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59803608/
我浏览了该网站和其他网站,找不到关于这种特质的任何解释,也找不到任何解决方案。 尽管在这些站点上有各种说法,但是Javascript和HTML5 DOM音频似乎无法在所有浏览器上正常工作,正如在各个站
beginGeneratingDeviceOrientationNotifications是否将状态栏重置回纵向? 在我的应用程序中,在下面记录 o 和 p: UIInterfaceOrientati
我开始意识到这是为初学者准备的: package Bad; has 'arr' => ( is => 'rw', 'ArrayRef[Str]' ); package main; my $bad =
只是想知道如何将的特征与放入vec中?我以为这应该是一个常见的问题,但我从未搜索过答案。 这是代码: use tokio::time::{delay_for, Duration}; #[async_t
更新 我的真正问题是由我的IDE自动导入了use std::borrow::{Borrow, BorrowMut};引起的。 在此行中,接受的答案为also doesn't compile。 解决方案
我正在尝试为 P/Invoke 正确编码(marshal)一些结构,但在 64 位操作系统上测试时发现奇怪的行为。 我有一个结构定义为: /// http://msdn.microsoft.com/e
说我有: abstract class D[T] {} trait A[T] { self => D[T] without B } trait B[T] { self => D[T] without
我尝试使用clap库创建一个简单的应用程序来解析命令行参数,并将其转换为Config自定义结构。我为我的结构实现了From特征,但是,当我尝试调用from函数时,收到以下错误: the trait b
在 Laravel 5.0 中,trait AuthenticatesAndRegistersUsers 中的方法 redirectPath 检查属性 redirectPath 或 redirectT
虽然这个问题有点与语言无关(就支持 Traits 的 OOP 语言而言)我一直在修补 PHP 5.4a 的夜间构建,并遇到了一个奇怪的场景。我似乎无法再运行我的安装,但那是另一回事了。 给定以下代码段
我是一名优秀的程序员,十分优秀!