summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/unsafe_derive_deserialize.stderr
blob: 8aaae2d7fff4835737c9559c67ab788173951b5a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
error: you are deriving `serde::Deserialize` on a type that has methods using `unsafe`
  --> $DIR/unsafe_derive_deserialize.rs:8:10
   |
LL | #[derive(Deserialize)]
   |          ^^^^^^^^^^^
   |
   = help: consider implementing `serde::Deserialize` manually. See https://serde.rs/impl-deserialize.html
   = note: `-D clippy::unsafe-derive-deserialize` implied by `-D warnings`
   = note: this error originates in the derive macro `Deserialize` (in Nightly builds, run with -Z macro-backtrace for more info)

error: you are deriving `serde::Deserialize` on a type that has methods using `unsafe`
  --> $DIR/unsafe_derive_deserialize.rs:16:10
   |
LL | #[derive(Deserialize)]
   |          ^^^^^^^^^^^
   |
   = help: consider implementing `serde::Deserialize` manually. See https://serde.rs/impl-deserialize.html
   = note: this error originates in the derive macro `Deserialize` (in Nightly builds, run with -Z macro-backtrace for more info)

error: you are deriving `serde::Deserialize` on a type that has methods using `unsafe`
  --> $DIR/unsafe_derive_deserialize.rs:22:10
   |
LL | #[derive(Deserialize)]
   |          ^^^^^^^^^^^
   |
   = help: consider implementing `serde::Deserialize` manually. See https://serde.rs/impl-deserialize.html
   = note: this error originates in the derive macro `Deserialize` (in Nightly builds, run with -Z macro-backtrace for more info)

error: you are deriving `serde::Deserialize` on a type that has methods using `unsafe`
  --> $DIR/unsafe_derive_deserialize.rs:30:10
   |
LL | #[derive(Deserialize)]
   |          ^^^^^^^^^^^
   |
   = help: consider implementing `serde::Deserialize` manually. See https://serde.rs/impl-deserialize.html
   = note: this error originates in the derive macro `Deserialize` (in Nightly builds, run with -Z macro-backtrace for more info)

error: aborting due to 4 previous errors