Skip to content

Commit

Permalink
Add library tracking issue for poll_ready feature
Browse files Browse the repository at this point in the history
  • Loading branch information
dtolnay committed Oct 11, 2021
1 parent 7a7dfa8 commit a1e03fc
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion library/core/src/task/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ pub use self::wake::{Context, RawWaker, RawWakerVTable, Waker};
mod ready;
#[unstable(feature = "ready_macro", issue = "70922")]
pub use ready::ready;
#[unstable(feature = "poll_ready", issue = "none")]
#[unstable(feature = "poll_ready", issue = "89780")]
pub use ready::Ready;
2 changes: 1 addition & 1 deletion library/core/src/task/poll.rs
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ impl<T> Poll<T> {
/// }
/// ```
#[inline]
#[unstable(feature = "poll_ready", issue = "none")]
#[unstable(feature = "poll_ready", issue = "89780")]
pub fn ready(self) -> Ready<T> {
Ready(self)
}
Expand Down
10 changes: 5 additions & 5 deletions library/core/src/task/ready.rs
Original file line number Diff line number Diff line change
Expand Up @@ -67,10 +67,10 @@ pub macro ready($e:expr) {
/// Extracts the successful type of a [`Poll<T>`].
///
/// See [`Poll::ready`] for details.
#[unstable(feature = "poll_ready", issue = "none")]
#[unstable(feature = "poll_ready", issue = "89780")]
pub struct Ready<T>(pub(crate) Poll<T>);

#[unstable(feature = "poll_ready", issue = "none")]
#[unstable(feature = "poll_ready", issue = "89780")]
impl<T> Try for Ready<T> {
type Output = T;
type Residual = Ready<convert::Infallible>;
Expand All @@ -89,7 +89,7 @@ impl<T> Try for Ready<T> {
}
}

#[unstable(feature = "poll_ready", issue = "none")]
#[unstable(feature = "poll_ready", issue = "89780")]
impl<T> FromResidual for Ready<T> {
#[inline]
fn from_residual(residual: Ready<convert::Infallible>) -> Self {
Expand All @@ -99,7 +99,7 @@ impl<T> FromResidual for Ready<T> {
}
}

#[unstable(feature = "poll_ready", issue = "none")]
#[unstable(feature = "poll_ready", issue = "89780")]
impl<T> FromResidual<Ready<convert::Infallible>> for Poll<T> {
#[inline]
fn from_residual(residual: Ready<convert::Infallible>) -> Self {
Expand All @@ -109,7 +109,7 @@ impl<T> FromResidual<Ready<convert::Infallible>> for Poll<T> {
}
}

#[unstable(feature = "poll_ready", issue = "none")]
#[unstable(feature = "poll_ready", issue = "89780")]
impl<T> fmt::Debug for Ready<T> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_tuple("Ready").finish()
Expand Down

0 comments on commit a1e03fc

Please sign in to comment.