@@ -622,9 +622,8 @@ impl<P: Deref> Pin<P> {
622
622
/// that the closure is pinned.
623
623
///
624
624
/// The better alternative is to avoid all that trouble and do the pinning in the outer function
625
- /// instead (here using the unstable `pin` macro):
625
+ /// instead (here using the [ `pin!`][crate::pin::pin] macro):
626
626
/// ```
627
- /// #![feature(pin_macro)]
628
627
/// use std::pin::pin;
629
628
/// use std::task::Context;
630
629
/// use std::future::Future;
@@ -1026,7 +1025,6 @@ impl<P, U> DispatchFromDyn<Pin<U>> for Pin<P> where P: DispatchFromDyn<U> {}
1026
1025
/// ### Basic usage
1027
1026
///
1028
1027
/// ```rust
1029
- /// #![feature(pin_macro)]
1030
1028
/// # use core::marker::PhantomPinned as Foo;
1031
1029
/// use core::pin::{pin, Pin};
1032
1030
///
@@ -1044,7 +1042,6 @@ impl<P, U> DispatchFromDyn<Pin<U>> for Pin<P> where P: DispatchFromDyn<U> {}
1044
1042
/// ### Manually polling a `Future` (without `Unpin` bounds)
1045
1043
///
1046
1044
/// ```rust
1047
- /// #![feature(pin_macro)]
1048
1045
/// use std::{
1049
1046
/// future::Future,
1050
1047
/// pin::pin,
@@ -1083,7 +1080,7 @@ impl<P, U> DispatchFromDyn<Pin<U>> for Pin<P> where P: DispatchFromDyn<U> {}
1083
1080
/// ### With `Generator`s
1084
1081
///
1085
1082
/// ```rust
1086
- /// #![feature(generators, generator_trait, pin_macro )]
1083
+ /// #![feature(generators, generator_trait)]
1087
1084
/// use core::{
1088
1085
/// ops::{Generator, GeneratorState},
1089
1086
/// pin::pin,
@@ -1126,7 +1123,6 @@ impl<P, U> DispatchFromDyn<Pin<U>> for Pin<P> where P: DispatchFromDyn<U> {}
1126
1123
/// The following, for instance, fails to compile:
1127
1124
///
1128
1125
/// ```rust,compile_fail
1129
- /// #![feature(pin_macro)]
1130
1126
/// use core::pin::{pin, Pin};
1131
1127
/// # use core::{marker::PhantomPinned as Foo, mem::drop as stuff};
1132
1128
///
@@ -1168,7 +1164,7 @@ impl<P, U> DispatchFromDyn<Pin<U>> for Pin<P> where P: DispatchFromDyn<U> {}
1168
1164
/// constructor.
1169
1165
///
1170
1166
/// [`Box::pin`]: ../../std/boxed/struct.Box.html#method.pin
1171
- #[ unstable ( feature = "pin_macro" , issue = "93178 " ) ]
1167
+ #[ stable ( feature = "pin_macro" , since = "CURRENT_RUSTC_VERSION " ) ]
1172
1168
#[ rustc_macro_transparency = "semitransparent" ]
1173
1169
#[ allow_internal_unstable( unsafe_pin_internals) ]
1174
1170
pub macro pin ( $value: expr $( , ) ?) {
0 commit comments