本文简要介绍rust语言中 Trait core::ops::Deref
的用法。
用法
pub trait Deref {
type Target: ?Sized;
fn deref(&self) -> &Self::Target;
}
用于不可变的取消引用操作,例如 *v
。
除了用于(一元)的显式取消引用操作*
不可变上下文中的运算符,Deref
在许多情况下,编译器也会隐式使用。这种机制称为'Deref
强制'.在可变的上下文中,core::ops::DerefMut被使用。
实施Deref
对于智能指针来说,访问它们背后的数据变得很方便,这就是他们实现的原因Deref
。另一方面,有关规则Deref
和core::ops::DerefMut专门为适应智能指针而设计。因为这,Deref
只能针对智能指针实现以避免混淆。
出于类似的原因,这个特质永远不应该失败。取消引用期间的失败可能会非常令人困惑Deref
被隐式调用。
更多关于 Deref
强制
如果 T
实现了 Deref<Target = U>
,并且 x
是 T
类型的值,则:
- 在不可变的上下文中,
*x
(其中T
既不是引用也不是原始指针)等价于*Deref::deref(&x)
。 &T
类型的值被强制转换为&U
类型的值T
隐式实现U
类型的所有(不可变)方法。
欲了解更多详情,请访问中的章节Rust 编程语言以及参考部分解引用运算符,方法解析和类型强制.
例子
具有单个字段的结构,可通过取消引用该结构来访问。
use std::ops::Deref;
struct DerefExample<T> {
value: T
}
impl<T> Deref for DerefExample<T> {
type Target = T;
fn deref(&self) -> &Self::Target {
&self.value
}
}
let x = DerefExample { value: 'a' };
assert_eq!('a', *x);
相关用法
- Rust DerefMut用法及代码示例
- Rust Deref用法及代码示例
- Rust DebugList.entries用法及代码示例
- Rust DebugList用法及代码示例
- Rust DebugMap.key用法及代码示例
- Rust DebugStruct.finish_non_exhaustive用法及代码示例
- Rust DebugStruct.field用法及代码示例
- Rust DebugTuple.finish用法及代码示例
- Rust Debug用法及代码示例
- Rust DebugStruct用法及代码示例
- Rust DebugStruct.finish用法及代码示例
- Rust DebugMap.entries用法及代码示例
- Rust Default.default用法及代码示例
- Rust DebugSet.finish用法及代码示例
- Rust DebugMap.entry用法及代码示例
- Rust DebugMap.value用法及代码示例
- Rust DebugSet.entry用法及代码示例
- Rust DebugMap.finish用法及代码示例
- Rust DebugSet用法及代码示例
- Rust DebugTuple.field用法及代码示例
- Rust DebugTuple用法及代码示例
- Rust DebugList.finish用法及代码示例
- Rust Default用法及代码示例
- Rust DebugList.entry用法及代码示例
- Rust DebugSet.entries用法及代码示例
注:本文由纯净天空筛选整理自rust-lang.org大神的英文原创作品 Trait core::ops::Deref。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。