We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 89fb34f commit 471fb62Copy full SHA for 471fb62
library/alloc/src/task.rs
@@ -33,6 +33,7 @@ pub trait Wake {
33
}
34
35
36
+#[allow(rustc::ineffective_unstable_trait_impl)]
37
#[unstable(feature = "wake_trait", issue = "69912")]
38
impl<W: Wake + Send + Sync + 'static> From<Arc<W>> for Waker {
39
fn from(waker: Arc<W>) -> Waker {
@@ -42,6 +43,7 @@ impl<W: Wake + Send + Sync + 'static> From<Arc<W>> for Waker {
42
43
44
45
46
47
48
impl<W: Wake + Send + Sync + 'static> From<Arc<W>> for RawWaker {
49
fn from(waker: Arc<W>) -> RawWaker {
0 commit comments