8000
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.
1 parent 9ca739e commit bc755bbCopy full SHA for bc755bb
core/src/pin.rs
@@ -1422,7 +1422,7 @@ impl<Ptr: DerefMut> Pin<Ptr> {
1422
/// move in the future, and this method does not enable the pointee to move. "Malicious"
1423
/// implementations of `Ptr::DerefMut` are likewise ruled out by the contract of
1424
/// `Pin::new_unchecked`.
1425
- #[unstable(feature = "pin_deref_mut", issue = "86918")]
+ #[stable(feature = "pin_deref_mut", since = "CURRENT_RUSTC_VERSION")]
1426
#[must_use = "`self` will be dropped if the result is not used"]
1427
#[inline(always)]
1428
pub fn as_deref_mut(self: Pin<&mut Pin<Ptr>>) -> Pin<&mut Ptr::Target> {
0 commit comments