diff options
| author | Justin Karneges <justin@karneges.com> | 2024-04-02 15:45:53 -0700 |
|---|---|---|
| committer | Justin Karneges <justin@karneges.com> | 2024-04-02 15:45:53 -0700 |
| commit | 036085dfec3f58cf63f8014f6c94adddace3b527 (patch) | |
| tree | e0fa7ad99043cc7050421827ddb090a67a792efa | |
| parent | 4f82731bba9bebf452e3ffae383ab5d57522562d (diff) | |
| download | rust-036085dfec3f58cf63f8014f6c94adddace3b527.tar.gz rust-036085dfec3f58cf63f8014f6c94adddace3b527.zip | |
set tracking issue
| -rw-r--r-- | library/core/src/task/wake.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/library/core/src/task/wake.rs b/library/core/src/task/wake.rs index 98e2c2912ef..fe39f6c0b56 100644 --- a/library/core/src/task/wake.rs +++ b/library/core/src/task/wake.rs @@ -276,7 +276,7 @@ impl<'a> Context<'a> { /// Returns a reference to the extension data for the current task. #[inline] - #[unstable(feature = "context_ext", issue = "none")] + #[unstable(feature = "context_ext", issue = "123392")] #[rustc_const_unstable(feature = "const_waker", issue = "102012")] pub const fn ext(&mut self) -> &mut dyn Any { match &mut self.ext { @@ -351,7 +351,7 @@ impl<'a> ContextBuilder<'a> { /// Create a ContextBuilder from an existing Context. #[inline] #[rustc_const_unstable(feature = "const_waker", issue = "102012")] - #[unstable(feature = "context_ext", issue = "none")] + #[unstable(feature = "context_ext", issue = "123392")] pub const fn from(cx: &'a mut Context<'_>) -> Self { let ext = match &mut cx.ext { ExtData::Some(ext) => ExtData::Some(*ext), @@ -368,7 +368,7 @@ impl<'a> ContextBuilder<'a> { /// This method is used to set the value for the waker on `Context`. #[inline] - #[unstable(feature = "context_ext", issue = "none")] + #[unstable(feature = "context_ext", issue = "123392")] #[rustc_const_unstable(feature = "const_waker", issue = "102012")] pub const fn waker(self, waker: &'a Waker) -> Self { Self { waker, ..self } @@ -384,7 +384,7 @@ impl<'a> ContextBuilder<'a> { /// This method is used to set the value for the extension data on `Context`. #[inline] - #[unstable(feature = "context_ext", issue = "none")] + #[unstable(feature = "context_ext", issue = "123392")] #[rustc_const_unstable(feature = "const_waker", issue = "102012")] pub const fn ext(self, data: &'a mut dyn Any) -> Self { Self { ext: ExtData::Some(data), ..self } |
