We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c6db1ca commit 7467db0Copy full SHA for 7467db0
library/core/src/pin.rs
@@ -1417,7 +1417,7 @@ impl<Ptr: Deref> Pin<Ptr> {
1417
/// move in the future, and this method does not enable the pointee to move. "Malicious"
1418
/// implementations of `Ptr::DerefMut` are likewise ruled out by the contract of
1419
/// `Pin::new_unchecked`.
1420
- #[unstable(feature = "pin_deref_mut", issue = "86918")]
+ #[stable(feature = "pin_deref_mut", since = "CURRENT_RUSTC_VERSION")]
1421
#[must_use = "`self` will be dropped if the result is not used"]
1422
#[inline(always)]
1423
pub fn as_deref_mut(self: Pin<&mut Pin<Ptr>>) -> Pin<&mut Ptr::Target>
0 commit comments