@@ -67,10 +67,10 @@ pub macro ready($e:expr) {
6767/// Extracts the successful type of a [`Poll<T>`].
6868 ///
6969/// See [`Poll::ready`] for details.
70- #[ unstable( feature = "poll_ready" , issue = "none " ) ]
70+ #[ unstable( feature = "poll_ready" , issue = "89780 " ) ]
7171pub struct Ready < T > ( pub ( crate ) Poll < T > ) ;
7272
73- #[ unstable( feature = "poll_ready" , issue = "none " ) ]
73+ #[ unstable( feature = "poll_ready" , issue = "89780 " ) ]
7474impl < T > Try for Ready < T > {
7575 type Output = T ;
7676 type Residual = Ready < convert:: Infallible > ;
@@ -89,7 +89,7 @@ impl<T> Try for Ready<T> {
8989 }
9090}
9191
92- #[ unstable( feature = "poll_ready" , issue = "none " ) ]
92+ #[ unstable( feature = "poll_ready" , issue = "89780 " ) ]
9393impl < T > FromResidual for Ready < T > {
9494 #[ inline]
9595 fn from_residual ( residual : Ready < convert:: Infallible > ) -> Self {
@@ -99,7 +99,7 @@ impl<T> FromResidual for Ready<T> {
9999 }
100100}
101101
102- #[ unstable( feature = "poll_ready" , issue = "none " ) ]
102+ #[ unstable( feature = "poll_ready" , issue = "89780 " ) ]
103103impl < T > FromResidual < Ready < convert:: Infallible > > for Poll < T > {
104104 #[ inline]
105105 fn from_residual ( residual : Ready < convert:: Infallible > ) -> Self {
@@ -109,7 +109,7 @@ impl<T> FromResidual<Ready<convert::Infallible>> for Poll<T> {
109109 }
110110}
111111
112- #[ unstable( feature = "poll_ready" , issue = "none " ) ]
112+ #[ unstable( feature = "poll_ready" , issue = "89780 " ) ]
113113impl < T > fmt:: Debug for Ready < T > {
114114 fn fmt ( & self , f : & mut fmt:: Formatter < ' _ > ) -> fmt:: Result {
115115 f. debug_tuple ( "Ready" ) . finish ( )
0 commit comments