• 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`
6  |
7  = note: this error originates in the derive macro `Deserialize` (in Nightly builds, run with -Z macro-backtrace for more info)
8help: you can convert a `u8` to a `u16`
9  |
107 | #[derive(Deserialize.into())]
11  |                     +++++++
12