We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b5e5a18 commit cf40292Copy full SHA for cf40292
library/core/src/pin.rs
@@ -810,7 +810,7 @@ impl<'a, P: DerefMut> Pin<&'a mut Pin<P>> {
810
/// move in the future, and this method does not enable the pointee to move. "Malicious"
811
/// implementations of `P::DerefMut` are likewise ruled out by the contract of
812
/// `Pin::new_unchecked`.
813
- #[unstable(feature = "pin_deref_mut", issue = "none")]
+ #[unstable(feature = "pin_deref_mut", issue = "86918")]
814
#[inline(always)]
815
pub fn as_deref_mut(self) -> Pin<&'a mut P::Target> {
816
// SAFETY: What we're asserting here is that going from
0 commit comments