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

21 lines
941 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<()>`, which is required by `impl Future<Output = ()>: Send`
2021-11-11 21:26:08 +01:00
note: future is not `Send` as this value is used across an await
2023-09-29 07:25:26 +00:00
--> tests/debug_handler/fail/not_send.rs:6:14
2021-11-11 21:26:08 +01:00
|
2023-09-29 07:25:26 +00:00
5 | let _rc = std::rc::Rc::new(());
| --- has type `Rc<()>` which is not `Send`
2021-11-11 21:26:08 +01:00
6 | async {}.await;
2023-09-29 07:25:26 +00:00
| ^^^^^ await occurs here, with `_rc` maybe used later
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)