2020-09-23 05:42:51 +08:00
|
|
|
error: Unexpected HTTP method: `UNEXPECTED`
|
2020-09-16 23:37:41 +02:00
|
|
|
--> $DIR/route-unexpected-method-fail.rs:3:21
|
|
|
|
|
|
|
|
|
3 | #[route("/", method="UNEXPECTED")]
|
|
|
|
| ^^^^^^^^^^^^
|
|
|
|
|
2021-10-14 18:06:31 +01:00
|
|
|
error[E0277]: the trait bound `fn() -> impl std::future::Future {index}: HttpServiceFactory` is not satisfied
|
2021-04-02 08:26:59 +01:00
|
|
|
--> $DIR/route-unexpected-method-fail.rs:12:55
|
2020-09-16 23:37:41 +02:00
|
|
|
|
|
2021-04-02 08:26:59 +01:00
|
|
|
12 | let srv = actix_test::start(|| App::new().service(index));
|
2021-10-14 18:06:31 +01:00
|
|
|
| ^^^^^ the trait `HttpServiceFactory` is not implemented for `fn() -> impl std::future::Future {index}`
|