Request
The --show-coverage unstable option should not count items marked as allow(missing_docs) when calculating the docs percentage.
Use Case
I have a crate full of "bitfield" types, where the useful data is bit packed into integers (example). Each pseudo-field has a getter and a setter. I would like to document the getters, but the setters simply match the associated getter, and additional words on them would only serve to distract.
Accordingly, the getters are marked as allow(missing_docs), and they shouldn't count towards the docs coverage.
Request
The
--show-coverageunstable option should not count items marked asallow(missing_docs)when calculating the docs percentage.Use Case
I have a crate full of "bitfield" types, where the useful data is bit packed into integers (example). Each pseudo-field has a getter and a setter. I would like to document the getters, but the setters simply match the associated getter, and additional words on them would only serve to distract.
Accordingly, the getters are marked as
allow(missing_docs), and they shouldn't count towards the docs coverage.