Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ignore struct_field_names pedantic clippy lint
warning: all fields have the same prefix: `object` --> src/error.rs:595:1 | 595 | / struct ErrorVTable { 596 | | object_drop: unsafe fn(Own<ErrorImpl>), 597 | | object_ref: unsafe fn(Ref<ErrorImpl>) -> Ref<dyn StdError + Send + Sync + 'static>, 598 | | #[cfg(all(feature = "std", anyhow_no_ptr_addr_of))] ... | 606 | | object_backtrace: unsafe fn(Ref<ErrorImpl>) -> Option<&Backtrace>, 607 | | } | |_^ | = help: remove the prefixes = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#struct_field_names = note: `-W clippy::struct-field-names` implied by `-W clippy::pedantic` = help: to override `-W clippy::pedantic` add `#[allow(clippy::struct_field_names)]`
- Loading branch information