2018-10-25 09:53:04 +00:00
|
|
|
error: fieldless structs or variants are not supported
|
2018-12-29 17:31:14 +00:00
|
|
|
--> $DIR/uri_display.rs:7:1
|
2018-10-25 09:53:04 +00:00
|
|
|
|
|
2018-12-29 17:31:14 +00:00
|
|
|
7 | struct Foo1;
|
2018-10-25 09:53:04 +00:00
|
|
|
| ^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
note: error occurred while deriving `UriDisplay`
|
|
|
|
--> $DIR/uri_display.rs:3:10
|
|
|
|
|
|
2018-11-27 16:01:47 +00:00
|
|
|
3 | #[derive(UriDisplayQuery)]
|
|
|
|
| ^^^^^^^^^^^^^^^
|
2018-10-25 09:53:04 +00:00
|
|
|
|
|
|
|
error: fieldless structs or variants are not supported
|
2018-12-29 17:31:14 +00:00
|
|
|
--> $DIR/uri_display.rs:14:1
|
|
|
|
|
|
|
|
|
14 | struct Foo2();
|
|
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
|
|
2018-10-25 09:53:04 +00:00
|
|
|
note: error occurred while deriving `UriDisplay`
|
2018-12-29 17:31:14 +00:00
|
|
|
--> $DIR/uri_display.rs:10:10
|
|
|
|
|
|
|
|
|
10 | #[derive(UriDisplayQuery)]
|
|
|
|
| ^^^^^^^^^^^^^^^
|
2018-10-25 09:53:04 +00:00
|
|
|
|
|
|
|
error: empty enums are not supported
|
2018-12-29 17:31:14 +00:00
|
|
|
--> $DIR/uri_display.rs:21:1
|
2018-10-25 09:53:04 +00:00
|
|
|
|
|
2018-12-29 17:31:14 +00:00
|
|
|
21 | enum Foo3 { }
|
2018-10-25 09:53:04 +00:00
|
|
|
| ^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
note: error occurred while deriving `UriDisplay`
|
2018-12-29 17:31:14 +00:00
|
|
|
--> $DIR/uri_display.rs:17:10
|
2018-10-25 09:53:04 +00:00
|
|
|
|
|
2018-12-29 17:31:14 +00:00
|
|
|
17 | #[derive(UriDisplayQuery)]
|
2018-11-27 16:01:47 +00:00
|
|
|
| ^^^^^^^^^^^^^^^
|
2018-10-25 09:53:04 +00:00
|
|
|
|
|
|
|
error: fieldless structs or variants are not supported
|
2018-12-29 17:31:14 +00:00
|
|
|
--> $DIR/uri_display.rs:29:5
|
2018-10-25 09:53:04 +00:00
|
|
|
|
|
2018-12-29 17:31:14 +00:00
|
|
|
29 | Variant,
|
2018-10-25 09:53:04 +00:00
|
|
|
| ^^^^^^^
|
|
|
|
|
|
|
|
|
note: error occurred while deriving `UriDisplay`
|
2018-12-29 17:31:14 +00:00
|
|
|
--> $DIR/uri_display.rs:24:10
|
2018-10-25 09:53:04 +00:00
|
|
|
|
|
2018-12-29 17:31:14 +00:00
|
|
|
24 | #[derive(UriDisplayQuery)]
|
2018-11-27 16:01:47 +00:00
|
|
|
| ^^^^^^^^^^^^^^^
|
2018-10-25 09:53:04 +00:00
|
|
|
|
|
|
|
error: tuple structs or variants must have exactly one field
|
2018-12-29 17:31:14 +00:00
|
|
|
--> $DIR/uri_display.rs:37:12
|
2018-10-25 09:53:04 +00:00
|
|
|
|
|
2018-12-29 17:31:14 +00:00
|
|
|
37 | struct Foo5(String, String);
|
2018-10-25 09:53:04 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
note: error occurred while deriving `UriDisplay`
|
2018-12-29 17:31:14 +00:00
|
|
|
--> $DIR/uri_display.rs:33:10
|
2018-10-25 09:53:04 +00:00
|
|
|
|
|
2018-12-29 17:31:14 +00:00
|
|
|
33 | #[derive(UriDisplayQuery)]
|
2018-11-27 16:01:47 +00:00
|
|
|
| ^^^^^^^^^^^^^^^
|
2018-10-25 09:53:04 +00:00
|
|
|
|
|
|
|
error: invalid value: expected string literal
|
2018-12-29 17:31:14 +00:00
|
|
|
--> $DIR/uri_display.rs:45:20
|
2018-10-25 09:53:04 +00:00
|
|
|
|
|
2018-12-29 17:31:14 +00:00
|
|
|
45 | #[form(field = 123)]
|
2018-10-25 09:53:04 +00:00
|
|
|
| ^^^
|
|
|
|
|
|
|
|
|
note: error occurred while deriving `UriDisplay`
|
2018-12-29 17:31:14 +00:00
|
|
|
--> $DIR/uri_display.rs:40:10
|
2018-10-25 09:53:04 +00:00
|
|
|
|
|
2018-12-29 17:31:14 +00:00
|
|
|
40 | #[derive(UriDisplayQuery)]
|
2018-11-27 16:01:47 +00:00
|
|
|
| ^^^^^^^^^^^^^^^
|
2018-10-25 09:53:04 +00:00
|
|
|
|
2018-11-27 16:01:47 +00:00
|
|
|
error: struct must have exactly one field
|
2018-12-29 17:31:14 +00:00
|
|
|
--> $DIR/uri_display.rs:53:12
|
2018-11-27 16:01:47 +00:00
|
|
|
|
|
2018-12-29 17:31:14 +00:00
|
|
|
53 | struct Foo7(String, usize);
|
2018-11-27 16:01:47 +00:00
|
|
|
| ^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
note: error occurred while deriving `UriDisplay`
|
2018-12-29 17:31:14 +00:00
|
|
|
--> $DIR/uri_display.rs:50:10
|
2018-11-27 16:01:47 +00:00
|
|
|
|
|
2018-12-29 17:31:14 +00:00
|
|
|
50 | #[derive(UriDisplayPath)]
|
2018-11-27 16:01:47 +00:00
|
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: struct must have exactly one field
|
2018-12-29 17:31:14 +00:00
|
|
|
--> $DIR/uri_display.rs:59:1
|
2018-11-27 16:01:47 +00:00
|
|
|
|
|
2018-12-29 17:31:14 +00:00
|
|
|
59 | struct Foo8;
|
2018-11-27 16:01:47 +00:00
|
|
|
| ^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
note: error occurred while deriving `UriDisplay`
|
2018-12-29 17:31:14 +00:00
|
|
|
--> $DIR/uri_display.rs:56:10
|
2018-11-27 16:01:47 +00:00
|
|
|
|
|
2018-12-29 17:31:14 +00:00
|
|
|
56 | #[derive(UriDisplayPath)]
|
2018-11-27 16:01:47 +00:00
|
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: enums are not supported
|
2018-12-29 17:31:14 +00:00
|
|
|
--> $DIR/uri_display.rs:65:1
|
2018-11-27 16:01:47 +00:00
|
|
|
|
|
2018-12-29 17:31:14 +00:00
|
|
|
65 | enum Foo9 { }
|
2018-11-27 16:01:47 +00:00
|
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
note: error occurred while deriving `UriDisplay`
|
2018-12-29 17:31:14 +00:00
|
|
|
--> $DIR/uri_display.rs:62:10
|
2018-11-27 16:01:47 +00:00
|
|
|
|
|
2018-12-29 17:31:14 +00:00
|
|
|
62 | #[derive(UriDisplayPath)]
|
2018-11-27 16:01:47 +00:00
|
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: named structs are not supported
|
2018-12-29 17:31:14 +00:00
|
|
|
--> $DIR/uri_display.rs:71:1
|
2018-11-27 16:01:47 +00:00
|
|
|
|
|
2018-12-29 17:31:14 +00:00
|
|
|
71 | / struct Foo10 {
|
|
|
|
72 | | //~^ ERROR not supported
|
|
|
|
73 | | named: usize
|
|
|
|
74 | | }
|
2018-11-27 16:01:47 +00:00
|
|
|
| |_^
|
|
|
|
|
|
|
|
|
note: error occurred while deriving `UriDisplay`
|
2018-12-29 17:31:14 +00:00
|
|
|
--> $DIR/uri_display.rs:68:10
|
2018-11-27 16:01:47 +00:00
|
|
|
|
|
2018-12-29 17:31:14 +00:00
|
|
|
68 | #[derive(UriDisplayPath)]
|
2018-11-27 16:01:47 +00:00
|
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
|
2018-12-29 17:31:14 +00:00
|
|
|
error[E0277]: the trait bound `Foo1: rocket::http::uri::UriDisplay<rocket::http::uri::Query>` is not satisfied
|
|
|
|
--> $DIR/uri_display.rs:3:10
|
|
|
|
|
|
|
|
|
3 | #[derive(UriDisplayQuery)]
|
|
|
|
| ^^^^^^^^^^^^^^^ the trait `rocket::http::uri::UriDisplay<rocket::http::uri::Query>` is not implemented for `Foo1`
|
|
|
|
|
|
|
|
error[E0277]: the trait bound `Foo1: rocket::http::uri::UriDisplay<rocket::http::uri::Query>` is not satisfied
|
|
|
|
--> $DIR/uri_display.rs:3:10
|
|
|
|
|
|
|
|
|
3 | #[derive(UriDisplayQuery)]
|
|
|
|
| ^^^^^^^^^^^^^^^ the trait `rocket::http::uri::UriDisplay<rocket::http::uri::Query>` is not implemented for `Foo1`
|
|
|
|
|
|
|
|
|
= note: required because of the requirements on the impl of `rocket::http::uri::UriDisplay<rocket::http::uri::Query>` for `&Foo1`
|
|
|
|
|
|
|
|
error[E0277]: the trait bound `Foo1: rocket::http::uri::UriDisplay<rocket::http::uri::Query>` is not satisfied
|
|
|
|
--> $DIR/uri_display.rs:3:10
|
|
|
|
|
|
|
|
|
3 | #[derive(UriDisplayQuery)]
|
|
|
|
| ^^^^^^^^^^^^^^^ the trait `rocket::http::uri::UriDisplay<rocket::http::uri::Query>` is not implemented for `Foo1`
|
|
|
|
|
|
|
|
|
= note: required because of the requirements on the impl of `rocket::http::uri::UriDisplay<rocket::http::uri::Query>` for `&mut Foo1`
|
|
|
|
|
|
|
|
error[E0277]: the trait bound `Foo2: rocket::http::uri::UriDisplay<rocket::http::uri::Query>` is not satisfied
|
|
|
|
--> $DIR/uri_display.rs:10:10
|
|
|
|
|
|
|
|
|
10 | #[derive(UriDisplayQuery)]
|
|
|
|
| ^^^^^^^^^^^^^^^ the trait `rocket::http::uri::UriDisplay<rocket::http::uri::Query>` is not implemented for `Foo2`
|
|
|
|
|
|
|
|
error[E0277]: the trait bound `Foo2: rocket::http::uri::UriDisplay<rocket::http::uri::Query>` is not satisfied
|
|
|
|
--> $DIR/uri_display.rs:10:10
|
|
|
|
|
|
|
|
|
10 | #[derive(UriDisplayQuery)]
|
|
|
|
| ^^^^^^^^^^^^^^^ the trait `rocket::http::uri::UriDisplay<rocket::http::uri::Query>` is not implemented for `Foo2`
|
|
|
|
|
|
|
|
|
= note: required because of the requirements on the impl of `rocket::http::uri::UriDisplay<rocket::http::uri::Query>` for `&Foo2`
|
|
|
|
|
|
|
|
error[E0277]: the trait bound `Foo2: rocket::http::uri::UriDisplay<rocket::http::uri::Query>` is not satisfied
|
|
|
|
--> $DIR/uri_display.rs:10:10
|
|
|
|
|
|
|
|
|
10 | #[derive(UriDisplayQuery)]
|
|
|
|
| ^^^^^^^^^^^^^^^ the trait `rocket::http::uri::UriDisplay<rocket::http::uri::Query>` is not implemented for `Foo2`
|
|
|
|
|
|
|
|
|
= note: required because of the requirements on the impl of `rocket::http::uri::UriDisplay<rocket::http::uri::Query>` for `&mut Foo2`
|
|
|
|
|
|
|
|
error[E0277]: the trait bound `Foo3: rocket::http::uri::UriDisplay<rocket::http::uri::Query>` is not satisfied
|
|
|
|
--> $DIR/uri_display.rs:17:10
|
|
|
|
|
|
|
|
|
17 | #[derive(UriDisplayQuery)]
|
|
|
|
| ^^^^^^^^^^^^^^^ the trait `rocket::http::uri::UriDisplay<rocket::http::uri::Query>` is not implemented for `Foo3`
|
|
|
|
|
|
|
|
error[E0277]: the trait bound `Foo3: rocket::http::uri::UriDisplay<rocket::http::uri::Query>` is not satisfied
|
|
|
|
--> $DIR/uri_display.rs:17:10
|
|
|
|
|
|
|
|
|
17 | #[derive(UriDisplayQuery)]
|
|
|
|
| ^^^^^^^^^^^^^^^ the trait `rocket::http::uri::UriDisplay<rocket::http::uri::Query>` is not implemented for `Foo3`
|
|
|
|
|
|
|
|
|
= note: required because of the requirements on the impl of `rocket::http::uri::UriDisplay<rocket::http::uri::Query>` for `&Foo3`
|
|
|
|
|
|
|
|
error[E0277]: the trait bound `Foo3: rocket::http::uri::UriDisplay<rocket::http::uri::Query>` is not satisfied
|
|
|
|
--> $DIR/uri_display.rs:17:10
|
|
|
|
|
|
|
|
|
17 | #[derive(UriDisplayQuery)]
|
|
|
|
| ^^^^^^^^^^^^^^^ the trait `rocket::http::uri::UriDisplay<rocket::http::uri::Query>` is not implemented for `Foo3`
|
|
|
|
|
|
|
|
|
= note: required because of the requirements on the impl of `rocket::http::uri::UriDisplay<rocket::http::uri::Query>` for `&mut Foo3`
|
|
|
|
|
|
|
|
error[E0277]: the trait bound `Foo4: rocket::http::uri::UriDisplay<rocket::http::uri::Query>` is not satisfied
|
|
|
|
--> $DIR/uri_display.rs:24:10
|
|
|
|
|
|
|
|
|
24 | #[derive(UriDisplayQuery)]
|
|
|
|
| ^^^^^^^^^^^^^^^ the trait `rocket::http::uri::UriDisplay<rocket::http::uri::Query>` is not implemented for `Foo4`
|
|
|
|
|
|
|
|
error[E0277]: the trait bound `Foo4: rocket::http::uri::UriDisplay<rocket::http::uri::Query>` is not satisfied
|
|
|
|
--> $DIR/uri_display.rs:24:10
|
|
|
|
|
|
|
|
|
24 | #[derive(UriDisplayQuery)]
|
|
|
|
| ^^^^^^^^^^^^^^^ the trait `rocket::http::uri::UriDisplay<rocket::http::uri::Query>` is not implemented for `Foo4`
|
|
|
|
|
|
|
|
|
= note: required because of the requirements on the impl of `rocket::http::uri::UriDisplay<rocket::http::uri::Query>` for `&Foo4`
|
|
|
|
|
|
|
|
error[E0277]: the trait bound `Foo4: rocket::http::uri::UriDisplay<rocket::http::uri::Query>` is not satisfied
|
|
|
|
--> $DIR/uri_display.rs:24:10
|
|
|
|
|
|
|
|
|
24 | #[derive(UriDisplayQuery)]
|
|
|
|
| ^^^^^^^^^^^^^^^ the trait `rocket::http::uri::UriDisplay<rocket::http::uri::Query>` is not implemented for `Foo4`
|
|
|
|
|
|
|
|
|
= note: required because of the requirements on the impl of `rocket::http::uri::UriDisplay<rocket::http::uri::Query>` for `&mut Foo4`
|
|
|
|
|
|
|
|
error[E0277]: the trait bound `Foo5: rocket::http::uri::UriDisplay<rocket::http::uri::Query>` is not satisfied
|
|
|
|
--> $DIR/uri_display.rs:33:10
|
|
|
|
|
|
|
|
|
33 | #[derive(UriDisplayQuery)]
|
|
|
|
| ^^^^^^^^^^^^^^^ the trait `rocket::http::uri::UriDisplay<rocket::http::uri::Query>` is not implemented for `Foo5`
|
|
|
|
|
|
|
|
error[E0277]: the trait bound `Foo5: rocket::http::uri::UriDisplay<rocket::http::uri::Query>` is not satisfied
|
|
|
|
--> $DIR/uri_display.rs:33:10
|
|
|
|
|
|
|
|
|
33 | #[derive(UriDisplayQuery)]
|
|
|
|
| ^^^^^^^^^^^^^^^ the trait `rocket::http::uri::UriDisplay<rocket::http::uri::Query>` is not implemented for `Foo5`
|
|
|
|
|
|
|
|
|
= note: required because of the requirements on the impl of `rocket::http::uri::UriDisplay<rocket::http::uri::Query>` for `&Foo5`
|
|
|
|
|
|
|
|
error[E0277]: the trait bound `Foo5: rocket::http::uri::UriDisplay<rocket::http::uri::Query>` is not satisfied
|
|
|
|
--> $DIR/uri_display.rs:33:10
|
|
|
|
|
|
|
|
|
33 | #[derive(UriDisplayQuery)]
|
|
|
|
| ^^^^^^^^^^^^^^^ the trait `rocket::http::uri::UriDisplay<rocket::http::uri::Query>` is not implemented for `Foo5`
|
|
|
|
|
|
|
|
|
= note: required because of the requirements on the impl of `rocket::http::uri::UriDisplay<rocket::http::uri::Query>` for `&mut Foo5`
|
|
|
|
|
|
|
|
error[E0277]: the trait bound `Foo6: rocket::http::uri::UriDisplay<rocket::http::uri::Query>` is not satisfied
|
|
|
|
--> $DIR/uri_display.rs:40:10
|
|
|
|
|
|
|
|
|
40 | #[derive(UriDisplayQuery)]
|
|
|
|
| ^^^^^^^^^^^^^^^ the trait `rocket::http::uri::UriDisplay<rocket::http::uri::Query>` is not implemented for `Foo6`
|
|
|
|
|
|
|
|
error[E0277]: the trait bound `Foo6: rocket::http::uri::UriDisplay<rocket::http::uri::Query>` is not satisfied
|
|
|
|
--> $DIR/uri_display.rs:40:10
|
|
|
|
|
|
|
|
|
40 | #[derive(UriDisplayQuery)]
|
|
|
|
| ^^^^^^^^^^^^^^^ the trait `rocket::http::uri::UriDisplay<rocket::http::uri::Query>` is not implemented for `Foo6`
|
|
|
|
|
|
|
|
|
= note: required because of the requirements on the impl of `rocket::http::uri::UriDisplay<rocket::http::uri::Query>` for `&Foo6`
|
|
|
|
|
|
|
|
error[E0277]: the trait bound `Foo6: rocket::http::uri::UriDisplay<rocket::http::uri::Query>` is not satisfied
|
|
|
|
--> $DIR/uri_display.rs:40:10
|
|
|
|
|
|
|
|
|
40 | #[derive(UriDisplayQuery)]
|
|
|
|
| ^^^^^^^^^^^^^^^ the trait `rocket::http::uri::UriDisplay<rocket::http::uri::Query>` is not implemented for `Foo6`
|
|
|
|
|
|
|
|
|
= note: required because of the requirements on the impl of `rocket::http::uri::UriDisplay<rocket::http::uri::Query>` for `&mut Foo6`
|
|
|
|
|
|
|
|
error[E0277]: the trait bound `Foo7: rocket::http::uri::UriDisplay<rocket::http::uri::Path>` is not satisfied
|
|
|
|
--> $DIR/uri_display.rs:50:10
|
|
|
|
|
|
|
|
|
50 | #[derive(UriDisplayPath)]
|
|
|
|
| ^^^^^^^^^^^^^^ the trait `rocket::http::uri::UriDisplay<rocket::http::uri::Path>` is not implemented for `Foo7`
|
|
|
|
|
|
|
|
error[E0277]: the trait bound `Foo7: rocket::http::uri::UriDisplay<rocket::http::uri::Path>` is not satisfied
|
|
|
|
--> $DIR/uri_display.rs:50:10
|
|
|
|
|
|
|
|
|
50 | #[derive(UriDisplayPath)]
|
|
|
|
| ^^^^^^^^^^^^^^ the trait `rocket::http::uri::UriDisplay<rocket::http::uri::Path>` is not implemented for `Foo7`
|
|
|
|
|
|
|
|
|
= note: required because of the requirements on the impl of `rocket::http::uri::UriDisplay<rocket::http::uri::Path>` for `&Foo7`
|
|
|
|
|
|
|
|
error[E0277]: the trait bound `Foo8: rocket::http::uri::UriDisplay<rocket::http::uri::Path>` is not satisfied
|
|
|
|
--> $DIR/uri_display.rs:56:10
|
|
|
|
|
|
|
|
|
56 | #[derive(UriDisplayPath)]
|
|
|
|
| ^^^^^^^^^^^^^^ the trait `rocket::http::uri::UriDisplay<rocket::http::uri::Path>` is not implemented for `Foo8`
|
|
|
|
|
|
|
|
error[E0277]: the trait bound `Foo8: rocket::http::uri::UriDisplay<rocket::http::uri::Path>` is not satisfied
|
|
|
|
--> $DIR/uri_display.rs:56:10
|
|
|
|
|
|
|
|
|
56 | #[derive(UriDisplayPath)]
|
|
|
|
| ^^^^^^^^^^^^^^ the trait `rocket::http::uri::UriDisplay<rocket::http::uri::Path>` is not implemented for `Foo8`
|
|
|
|
|
|
|
|
|
= note: required because of the requirements on the impl of `rocket::http::uri::UriDisplay<rocket::http::uri::Path>` for `&Foo8`
|
|
|
|
|
|
|
|
error[E0277]: the trait bound `Foo9: rocket::http::uri::UriDisplay<rocket::http::uri::Path>` is not satisfied
|
|
|
|
--> $DIR/uri_display.rs:62:10
|
|
|
|
|
|
|
|
|
62 | #[derive(UriDisplayPath)]
|
|
|
|
| ^^^^^^^^^^^^^^ the trait `rocket::http::uri::UriDisplay<rocket::http::uri::Path>` is not implemented for `Foo9`
|
|
|
|
|
|
|
|
error[E0277]: the trait bound `Foo9: rocket::http::uri::UriDisplay<rocket::http::uri::Path>` is not satisfied
|
|
|
|
--> $DIR/uri_display.rs:62:10
|
|
|
|
|
|
|
|
|
62 | #[derive(UriDisplayPath)]
|
|
|
|
| ^^^^^^^^^^^^^^ the trait `rocket::http::uri::UriDisplay<rocket::http::uri::Path>` is not implemented for `Foo9`
|
|
|
|
|
|
|
|
|
= note: required because of the requirements on the impl of `rocket::http::uri::UriDisplay<rocket::http::uri::Path>` for `&Foo9`
|
|
|
|
|
|
|
|
error[E0277]: the trait bound `Foo10: rocket::http::uri::UriDisplay<rocket::http::uri::Path>` is not satisfied
|
|
|
|
--> $DIR/uri_display.rs:68:10
|
|
|
|
|
|
|
|
|
68 | #[derive(UriDisplayPath)]
|
|
|
|
| ^^^^^^^^^^^^^^ the trait `rocket::http::uri::UriDisplay<rocket::http::uri::Path>` is not implemented for `Foo10`
|
|
|
|
|
|
|
|
error[E0277]: the trait bound `Foo10: rocket::http::uri::UriDisplay<rocket::http::uri::Path>` is not satisfied
|
|
|
|
--> $DIR/uri_display.rs:68:10
|
|
|
|
|
|
|
|
|
68 | #[derive(UriDisplayPath)]
|
|
|
|
| ^^^^^^^^^^^^^^ the trait `rocket::http::uri::UriDisplay<rocket::http::uri::Path>` is not implemented for `Foo10`
|
|
|
|
|
|
|
|
|
= note: required because of the requirements on the impl of `rocket::http::uri::UriDisplay<rocket::http::uri::Path>` for `&Foo10`
|
|
|
|
|
|
|
|
error: aborting due to 36 previous errors
|
2018-10-25 09:53:04 +00:00
|
|
|
|
2018-12-29 17:31:14 +00:00
|
|
|
For more information about this error, try `rustc --explain E0277`.
|