• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1error[E0308]: mismatched types
2 --> tests/ui/remote/wrong_de.rs:7:10
3  |
47 | #[derive(Deserialize)]
5  |          ^^^^^^^^^^^ expected `u16`, found `u8`
68 | #[serde(remote = "remote::S")]
7  |                  ----------- arguments to this struct are incorrect
8  |
9note: tuple struct defined here
10 --> tests/ui/remote/wrong_de.rs:4:16
11  |
124 |     pub struct S(pub u16);
13  |                ^
14  = note: this error originates in the derive macro `Deserialize` (in Nightly builds, run with -Z macro-backtrace for more info)
15