For example, std::str::SplitWhitespace does not have a debug implementation (see: PR #44303), but the lint didn't trigger. I'd consider this a bug; if there isn't a debug implementation for an exported struct, the user should have to put allow(missing_debug_implementations) to suppress it if they can't fix it themself.
This probably applies to missing_docs too.
For example,
std::str::SplitWhitespacedoes not have a debug implementation (see: PR #44303), but the lint didn't trigger. I'd consider this a bug; if there isn't a debug implementation for an exported struct, the user should have to putallow(missing_debug_implementations)to suppress it if they can't fix it themself.This probably applies to
missing_docstoo.