Some code that I'm writing uses the #![warn(missing_docs)] macro to enforce a requirement that all public interfaces have documentation. I haven't been able to figure out how to generate documentation when using the bitflags! macro; I also haven't been able to turn off the linter warning using #![allow(missing_docs)].
Is there a convenient way to add doc comments to a set of flags?
- If so, is there an example somewhere that I can reference? This would be a great thing to include in bitflags documentation.
- If not, then take this as a feature request!