File tree 2 files changed +4
-5
lines changed
2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -63,15 +63,15 @@ impl RawWaker {
63
63
/// Gets the `data` pointer used to create this `RawWaker`.
64
64
#[ inline]
65
65
#[ must_use]
66
- #[ unstable ( feature = "waker_getters" , issue = "96992 " ) ]
66
+ #[ stable ( feature = "waker_getters" , since = "CURRENT_RUSTC_VERSION " ) ]
67
67
pub fn data ( & self ) -> * const ( ) {
68
68
self . data
69
69
}
70
70
71
71
/// Gets the `vtable` pointer used to create this `RawWaker`.
72
72
#[ inline]
73
73
#[ must_use]
74
- #[ unstable ( feature = "waker_getters" , issue = "96992 " ) ]
74
+ #[ stable ( feature = "waker_getters" , since = "CURRENT_RUSTC_VERSION " ) ]
75
75
pub fn vtable ( & self ) -> & ' static RawWakerVTable {
76
76
self . vtable
77
77
}
@@ -568,7 +568,7 @@ impl Waker {
568
568
/// Gets a reference to the underlying [`RawWaker`].
569
569
#[ inline]
570
570
#[ must_use]
571
- #[ unstable ( feature = "waker_getters" , issue = "96992 " ) ]
571
+ #[ stable ( feature = "waker_getters" , since = "CURRENT_RUSTC_VERSION " ) ]
572
572
pub fn as_raw ( & self ) -> & RawWaker {
573
573
& self . waker
574
574
}
@@ -834,7 +834,7 @@ impl LocalWaker {
834
834
/// Gets a reference to the underlying [`RawWaker`].
835
835
#[ inline]
836
836
#[ must_use]
837
- #[ unstable( feature = "waker_getters " , issue = "96992 " ) ]
837
+ #[ unstable( feature = "local_waker " , issue = "118959 " ) ]
838
838
pub fn as_raw ( & self ) -> & RawWaker {
839
839
& self . waker
840
840
}
Original file line number Diff line number Diff line change 112
112
#![ feature( unsize) ]
113
113
#![ feature( unsized_tuple_coercion) ]
114
114
#![ feature( unwrap_infallible) ]
115
- #![ feature( waker_getters) ]
116
115
// tidy-alphabetical-end
117
116
#![ allow( internal_features) ]
118
117
#![ deny( fuzzy_provenance_casts) ]
You can’t perform that action at this time.
0 commit comments