#Does anyone know how to suppress warnings that occurs in the derive tag?
4 messages · Page 1 of 1 (latest)
Hey, does the warning also appear when running the project with cargo directly on the terminal? Sometimes it's just a RA (Rust-Analyser) issue
it does
Then I'd suggesting allowing it a the root mod level, and report the issue to the maintainers:
mod foo {
#![allow(unused_must_use)]
#[derive(...)]
}