Is there some Clippy command line option to suppress "field is never read", "unused variable", and "function is never used"? That would be useful when the program isn't finished yet.
I was hoping that "todo!()" would tell Clippy that something isn't finished yet and related unused" messages should be suppressed, But it doesn't do that.
turned out to do exactly what I wanted. All Clippy errors appear, while several types of "unused" warnings are suppressed. That needs to be documented better, since it's a very useful check for an in-progress project. You may want to check in code that's not called yet, but not check in code with other warnings.