2021-11-11 21:26:08 +01:00
|
|
|
error: future cannot be sent between threads safely
|
2022-01-26 23:27:22 +01:00
|
|
|
--> tests/debug_handler/fail/not_send.rs:4:1
|
2021-11-11 21:26:08 +01:00
|
|
|
|
|
2022-11-19 12:45:03 +01:00
|
|
|
4 | / async fn handler() {
|
|
|
|
5 | | let rc = std::rc::Rc::new(());
|
|
|
|
6 | | async {}.await;
|
|
|
|
7 | | }
|
|
|
|
| |_^ future returned by `handler` is not `Send`
|
2021-11-11 21:26:08 +01:00
|
|
|
|
|
2022-01-14 09:32:34 +01:00
|
|
|
= help: within `impl Future<Output = ()>`, the trait `Send` is not implemented for `Rc<()>`
|
2021-11-11 21:26:08 +01:00
|
|
|
note: future is not `Send` as this value is used across an await
|
2022-02-25 11:30:10 +01:00
|
|
|
--> tests/debug_handler/fail/not_send.rs:6:13
|
2021-11-11 21:26:08 +01:00
|
|
|
|
|
|
|
|
5 | let rc = std::rc::Rc::new(());
|
|
|
|
| -- has type `Rc<()>` which is not `Send`
|
|
|
|
6 | async {}.await;
|
2022-02-25 11:30:10 +01:00
|
|
|
| ^^^^^^ await occurs here, with `rc` maybe used later
|
2021-11-11 21:26:08 +01:00
|
|
|
7 | }
|
|
|
|
| - `rc` is later dropped here
|
2021-11-19 21:32:07 +01:00
|
|
|
note: required by a bound in `check`
|
2022-01-26 23:27:22 +01:00
|
|
|
--> tests/debug_handler/fail/not_send.rs:4:1
|
2021-11-11 21:26:08 +01:00
|
|
|
|
|
2022-11-19 12:45:03 +01:00
|
|
|
4 | / async fn handler() {
|
|
|
|
5 | | let rc = std::rc::Rc::new(());
|
|
|
|
6 | | async {}.await;
|
|
|
|
7 | | }
|
|
|
|
| |_^ required by this bound in `check`
|