We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 9ac90fa + 820aa5b commit a721221Copy full SHA for a721221
src/libcore/pin.rs
@@ -462,7 +462,7 @@ impl<P: Deref<Target: Unpin>> Pin<P> {
462
/// can ignore the pinning invariants when unwrapping it.
463
///
464
/// [`Unpin`]: ../../std/marker/trait.Unpin.html
465
- #[unstable(feature = "pin_into_inner", issue = "60245")]
+ #[stable(feature = "pin_into_inner", since = "1.39.0")]
466
#[inline(always)]
467
pub fn into_inner(pin: Pin<P>) -> P {
468
pin.pointer
@@ -569,7 +569,7 @@ impl<P: Deref> Pin<P> {
569
570
571
/// [`Pin::into_inner`]: #method.into_inner
572
573
574
pub unsafe fn into_inner_unchecked(pin: Pin<P>) -> P {
575
0 commit comments