2020-09-22 21:42:51 +00:00
|
|
|
error: HTTP method defined more than once: `GET`
|
2022-06-22 11:08:06 +00:00
|
|
|
--> tests/trybuild/route-duplicate-method-fail.rs:3:35
|
2020-09-16 21:37:41 +00:00
|
|
|
|
|
|
|
|
3 | #[route("/", method="GET", method="GET")]
|
|
|
|
| ^^^^^
|
|
|
|
|
2021-10-14 17:06:31 +00:00
|
|
|
error[E0277]: the trait bound `fn() -> impl std::future::Future {index}: HttpServiceFactory` is not satisfied
|
2022-06-22 11:08:06 +00:00
|
|
|
--> tests/trybuild/route-duplicate-method-fail.rs:12:55
|
2020-09-16 21:37:41 +00:00
|
|
|
|
|
2021-04-02 07:26:59 +00:00
|
|
|
12 | let srv = actix_test::start(|| App::new().service(index));
|
2022-06-22 11:08:06 +00:00
|
|
|
| ------- ^^^^^ the trait `HttpServiceFactory` is not implemented for `fn() -> impl std::future::Future {index}`
|
|
|
|
| |
|
|
|
|
| required by a bound introduced by this call
|