Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ignore missing_fields_in_debug clippy lint for Ident
error: manual `Debug` impl does not include all fields --> src/fallback.rs:853:1 | 853 | / impl Debug for Ident { 854 | | // Ident(proc_macro), Ident(r#union) 855 | | #[cfg(not(span_locations))] 856 | | fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { ... | 872 | | } 873 | | } | |_^ | note: this field is unused --> src/fallback.rs:748:5 | 748 | raw: bool, | ^^^^^^^^^ = help: consider including all fields in this `Debug` impl = help: consider calling `.finish_non_exhaustive()` if you intend to ignore fields = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#missing_fields_in_debug = note: `-D clippy::missing-fields-in-debug` implied by `-D clippy::pedantic`
- Loading branch information