]> git.lizzy.rs Git - rust.git/commitdiff
Link tracking issue for pin_deref_mut
authorJon Gjengset <jon@thesquareplanet.com>
Tue, 6 Jul 2021 23:59:14 +0000 (16:59 -0700)
committerJon Gjengset <jon@thesquareplanet.com>
Tue, 6 Jul 2021 23:59:45 +0000 (16:59 -0700)
library/core/src/pin.rs

index 85411bac946a45c2f56dbc36262b5ae994418db4..6b1a12ed18c0fa6351adbd70a1106dfb8420fde0 100644 (file)
@@ -810,7 +810,7 @@ impl<'a, P: DerefMut> Pin<&'a mut Pin<P>> {
     /// move in the future, and this method does not enable the pointee to move. "Malicious"
     /// implementations of `P::DerefMut` are likewise ruled out by the contract of
     /// `Pin::new_unchecked`.
-    #[unstable(feature = "pin_deref_mut", issue = "none")]
+    #[unstable(feature = "pin_deref_mut", issue = "86918")]
     #[inline(always)]
     pub fn as_deref_mut(self) -> Pin<&'a mut P::Target> {
         // SAFETY: What we're asserting here is that going from