You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
error[E0277]: expected a `FnOnce()` closure, found `{coroutine-closure@$DIR/is-not-fn.rs:7:14: 7:22}`
1
+
error[E0271]: expected `{[email protected]:7:14}` to be a closure that returns `()`, but it returns `{async closure body@$DIR/is-not-fn.rs:7:23: 7:25}`
2
2
--> $DIR/is-not-fn.rs:7:14
3
3
|
4
4
LL | needs_fn(async || {});
5
-
| -------- ^^^^^^^^^^^ expected an `FnOnce()` closure, found `{coroutine-closure@$DIR/is-not-fn.rs:7:14: 7:22}`
5
+
| -------- ^^^^^^^^^^^ expected `()`, found `async` closure body
6
6
| |
7
7
| required by a bound introduced by this call
8
8
|
9
-
= help: the trait `FnOnce<()>` is not implemented for `{coroutine-closure@$DIR/is-not-fn.rs:7:14: 7:22}`
10
-
= note: wrap the `{coroutine-closure@$DIR/is-not-fn.rs:7:14: 7:22}` in a closure with no arguments: `|| { /* code */ }`
9
+
= note: expected unit type `()`
10
+
found `async` closure body `{async closure body@$DIR/is-not-fn.rs:7:23: 7:25}`
= note: the trait cannot be made into an object because it contains the generic associated type `CallFuture`
11
+
= help: the following types implement the trait, consider defining an enum where each variant holds one of these types, implementing `AsyncFn` for this new enum and using it instead:
12
+
&F
13
+
std::boxed::Box<F, A>
11
14
12
15
error[E0038]: the trait `AsyncFnMut` cannot be made into an object
13
16
--> $DIR/dyn-pos.rs:5:16
@@ -19,6 +22,10 @@ note: for a trait to be "object safe" it needs to allow building a vtable to all
= note: the trait cannot be made into an object because it contains the generic associated type `CallMutFuture`
25
+
= help: the following types implement the trait, consider defining an enum where each variant holds one of these types, implementing `AsyncFnMut` for this new enum and using it instead:
26
+
&F
27
+
&mut F
28
+
std::boxed::Box<F, A>
22
29
23
30
error[E0038]: the trait `AsyncFn` cannot be made into an object
24
31
--> $DIR/dyn-pos.rs:5:16
@@ -30,6 +37,9 @@ note: for a trait to be "object safe" it needs to allow building a vtable to all
= note: the trait cannot be made into an object because it contains the generic associated type `CallFuture`
40
+
= help: the following types implement the trait, consider defining an enum where each variant holds one of these types, implementing `AsyncFn` for this new enum and using it instead:
41
+
&F
42
+
std::boxed::Box<F, A>
33
43
= note: duplicate diagnostic emitted due to `-Z deduplicate-diagnostics=no`
34
44
35
45
error[E0038]: the trait `AsyncFnMut` cannot be made into an object
@@ -42,6 +52,10 @@ note: for a trait to be "object safe" it needs to allow building a vtable to all
= note: the trait cannot be made into an object because it contains the generic associated type `CallMutFuture`
55
+
= help: the following types implement the trait, consider defining an enum where each variant holds one of these types, implementing `AsyncFnMut` for this new enum and using it instead:
56
+
&F
57
+
&mut F
58
+
std::boxed::Box<F, A>
45
59
= note: duplicate diagnostic emitted due to `-Z deduplicate-diagnostics=no`
46
60
47
61
error[E0038]: the trait `AsyncFn` cannot be made into an object
@@ -54,6 +68,9 @@ note: for a trait to be "object safe" it needs to allow building a vtable to all
= note: the trait cannot be made into an object because it contains the generic associated type `CallFuture`
71
+
= help: the following types implement the trait, consider defining an enum where each variant holds one of these types, implementing `AsyncFn` for this new enum and using it instead:
72
+
&F
73
+
std::boxed::Box<F, A>
57
74
= note: duplicate diagnostic emitted due to `-Z deduplicate-diagnostics=no`
58
75
59
76
error[E0038]: the trait `AsyncFnMut` cannot be made into an object
@@ -66,6 +83,10 @@ note: for a trait to be "object safe" it needs to allow building a vtable to all
= note: the trait cannot be made into an object because it contains the generic associated type `CallMutFuture`
86
+
= help: the following types implement the trait, consider defining an enum where each variant holds one of these types, implementing `AsyncFnMut` for this new enum and using it instead:
87
+
&F
88
+
&mut F
89
+
std::boxed::Box<F, A>
69
90
= note: duplicate diagnostic emitted due to `-Z deduplicate-diagnostics=no`
70
91
71
92
error[E0038]: the trait `AsyncFn` cannot be made into an object
@@ -81,6 +102,9 @@ note: for a trait to be "object safe" it needs to allow building a vtable to all
= note: the trait cannot be made into an object because it contains the generic associated type `CallMutFuture`
105
+
= help: the following types implement the trait, consider defining an enum where each variant holds one of these types, implementing `AsyncFn` for this new enum and using it instead:
0 commit comments