We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
missing_inline_in_public_items
#[derive]
Example:
#![warn(clippy::missing_inline_in_public_items)] #[derive(Debug)] pub struct S {}
warning: missing `#[inline]` for a method --> src/lib.rs:3:10 | 3 | #[derive(Debug)] | ^^^^^
I don't think Clippy should warn about this, since the user cannot control the code in question.