mirror of https://github.com/rwf2/Rocket.git
58 lines
1.7 KiB
Plaintext
58 lines
1.7 KiB
Plaintext
error: named structs are not supported
|
|
--> tests/ui-fail-stable/from_param.rs:4:1
|
|
|
|
|
4 | / struct Foo1 {
|
|
5 | | a: String
|
|
6 | | }
|
|
| |_^
|
|
|
|
error: [note] error occurred while deriving `FromParam`
|
|
--> tests/ui-fail-stable/from_param.rs:3:10
|
|
|
|
|
3 | #[derive(FromParam)]
|
|
| ^^^^^^^^^
|
|
|
|
|
= note: this error originates in the derive macro `FromParam` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
|
|
error: named structs are not supported
|
|
--> tests/ui-fail-stable/from_param.rs:9:1
|
|
|
|
|
9 | struct Foo2 {}
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
error: [note] error occurred while deriving `FromParam`
|
|
--> tests/ui-fail-stable/from_param.rs:8:10
|
|
|
|
|
8 | #[derive(FromParam)]
|
|
| ^^^^^^^^^
|
|
|
|
|
= note: this error originates in the derive macro `FromParam` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
|
|
error: variants with data fields are not supported
|
|
--> tests/ui-fail-stable/from_param.rs:13:6
|
|
|
|
|
13 | A(String),
|
|
| ^^^^^^^^
|
|
|
|
error: [note] error occurred while deriving `FromParam`
|
|
--> tests/ui-fail-stable/from_param.rs:11:10
|
|
|
|
|
11 | #[derive(FromParam)]
|
|
| ^^^^^^^^^
|
|
|
|
|
= note: this error originates in the derive macro `FromParam` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
|
|
error: tuple structs are not supported
|
|
--> tests/ui-fail-stable/from_param.rs:18:1
|
|
|
|
|
18 | struct Foo4(usize);
|
|
| ^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: [note] error occurred while deriving `FromParam`
|
|
--> tests/ui-fail-stable/from_param.rs:17:10
|
|
|
|
|
17 | #[derive(FromParam)]
|
|
| ^^^^^^^^^
|
|
|
|
|
= note: this error originates in the derive macro `FromParam` (in Nightly builds, run with -Z macro-backtrace for more info)
|