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