We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
ops::DerefMut
1 parent 9b82646 commit 4d42b61Copy full SHA for 4d42b61
compiler/rustc_span/src/symbol.rs
@@ -219,6 +219,7 @@ symbols! {
219
Decoder,
220
Default,
221
Deref,
222
+ DerefMut,
223
DiagMessage,
224
Diagnostic,
225
DirBuilder,
library/core/src/ops/deref.rs
@@ -266,6 +266,7 @@ impl<T: ?Sized> const Deref for &mut T {
266
#[lang = "deref_mut"]
267
#[doc(alias = "*")]
268
#[stable(feature = "rust1", since = "1.0.0")]
269
+#[rustc_diagnostic_item = "DerefMut"]
270
#[rustc_const_unstable(feature = "const_convert", issue = "143773")]
271
pub const trait DerefMut: [const] Deref + PointeeSized {
272
/// Mutably dereferences the value.
0 commit comments