Skip to content

Commit 0ee71c7

Browse files
committed
Ignore explicit_auto_deref clippy lint
error: deref which would be done by auto-deref --> serde/src/de/impls.rs:2014:59 | 2014 | ... Err(Error::unknown_field(&*value, FIELDS)) | ^^^^^^ help: try this: `value` | = note: `-D clippy::explicit-auto-deref` implied by `-D clippy::all` = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#explicit_auto_deref error: deref which would be done by auto-deref --> serde/src/de/impls.rs:2354:55 | 2354 | ... Err(Error::unknown_field(&*value, FIELDS)) | ^^^^^^ help: try this: `value` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#explicit_auto_deref
1 parent 6c098e4 commit 0ee71c7

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

serde/src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,7 @@
120120
// correctly used
121121
derive_partial_eq_without_eq,
122122
enum_glob_use,
123+
explicit_auto_deref,
123124
let_underscore_drop,
124125
map_err_ignore,
125126
result_unit_err,

0 commit comments

Comments
 (0)