-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Extension<NonCloneType> debug_handler ui test
- Loading branch information
Showing
2 changed files
with
37 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
use axum::extract::Extension; | ||
use axum_macros::debug_handler; | ||
|
||
struct NonCloneType; | ||
|
||
#[debug_handler] | ||
async fn test_extension_non_clone(_: Extension<NonCloneType>) {} | ||
|
||
fn main() {} |
28 changes: 28 additions & 0 deletions
28
axum-macros/tests/debug_handler/fail/extension_not_clone.stderr
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
error[E0277]: the trait bound `NonCloneType: Clone` is not satisfied | ||
--> tests/debug_handler/fail/extension_not_clone.rs:7:38 | ||
| | ||
7 | async fn test_extension_non_clone(_: Extension<NonCloneType>) {} | ||
| ^^^^^^^^^^^^^^^^^^^^^^^ the trait `Clone` is not implemented for `NonCloneType`, which is required by `Extension<NonCloneType>: FromRequest<(), _>` | ||
| | ||
= help: the following other types implement trait `FromRequest<S, M>`: | ||
axum::body::Bytes | ||
Body | ||
Form<T> | ||
Json<T> | ||
axum::http::Request<Body> | ||
RawForm | ||
String | ||
Option<T> | ||
and $N others | ||
= note: required for `Extension<NonCloneType>` to implement `FromRequestParts<()>` | ||
= note: required for `Extension<NonCloneType>` to implement `FromRequest<(), axum_core::extract::private::ViaParts>` | ||
note: required by a bound in `__axum_macros_check_test_extension_non_clone_0_from_request_check` | ||
--> tests/debug_handler/fail/extension_not_clone.rs:7:38 | ||
| | ||
7 | async fn test_extension_non_clone(_: Extension<NonCloneType>) {} | ||
| ^^^^^^^^^^^^^^^^^^^^^^^ required by this bound in `__axum_macros_check_test_extension_non_clone_0_from_request_check` | ||
help: consider annotating `NonCloneType` with `#[derive(Clone)]` | ||
| | ||
4 + #[derive(Clone)] | ||
5 | struct NonCloneType; | ||
| |