@@ -276,7 +276,7 @@ impl<'a> Context<'a> {
276
276
277
277
/// Returns a reference to the extension data for the current task.
278
278
#[inline]
279
- #[unstable(feature = "context_ext", issue = "none ")]
279
+ #[unstable(feature = "context_ext", issue = "123392 ")]
280
280
#[rustc_const_unstable(feature = "const_waker", issue = "102012")]
281
281
pub const fn ext(&mut self) -> &mut dyn Any {
282
282
match &mut self.ext {
@@ -351,7 +351,7 @@ impl<'a> ContextBuilder<'a> {
351
351
/// Create a ContextBuilder from an existing Context.
352
352
#[inline]
353
353
#[rustc_const_unstable(feature = "const_waker", issue = "102012")]
354
- #[unstable(feature = "context_ext", issue = "none ")]
354
+ #[unstable(feature = "context_ext", issue = "123392 ")]
355
355
pub const fn from(cx: &'a mut Context<'_>) -> Self {
356
356
let ext = match &mut cx.ext {
357
357
ExtData::Some(ext) => ExtData::Some(*ext),
@@ -368,7 +368,7 @@ impl<'a> ContextBuilder<'a> {
368
368
369
369
/// This method is used to set the value for the waker on `Context`.
370
370
#[inline]
371
- #[unstable(feature = "context_ext", issue = "none ")]
371
+ #[unstable(feature = "context_ext", issue = "123392 ")]
372
372
#[rustc_const_unstable(feature = "const_waker", issue = "102012")]
373
373
pub const fn waker(self, waker: &'a Waker) -> Self {
374
374
Self { waker, ..self }
@@ -384,7 +384,7 @@ impl<'a> ContextBuilder<'a> {
384
384
385
385
/// This method is used to set the value for the extension data on `Context`.
386
386
#[inline]
387
- #[unstable(feature = "context_ext", issue = "none ")]
387
+ #[unstable(feature = "context_ext", issue = "123392 ")]
388
388
#[rustc_const_unstable(feature = "const_waker", issue = "102012")]
389
389
pub const fn ext(self, data: &'a mut dyn Any) -> Self {
390
390
Self { ext: ExtData::Some(data), ..self }
0 commit comments