Files
axum/axum-macros/tests/debug_handler/fail/not_send.stderr
T

23 lines
922 B
Plaintext
Raw Normal View History

2021-11-11 21:26:08 +01:00
error: future cannot be sent between threads safely
--> tests/debug_handler/fail/not_send.rs:3:1
2021-11-11 21:26:08 +01:00
|
3 | #[debug_handler]
| ^^^^^^^^^^^^^^^^ future returned by `handler` is not `Send`
2021-11-11 21:26:08 +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`
--> tests/debug_handler/fail/not_send.rs:3:1
2021-11-11 21:26:08 +01:00
|
3 | #[debug_handler]
| ^^^^^^^^^^^^^^^^ required by this bound in `check`
= note: this error originates in the attribute macro `debug_handler` (in Nightly builds, run with -Z macro-backtrace for more info)