How to get llvm-cov to print names of uncovered funs?

I am using cargo llvm-cov, and the summary for some files suggests that there are more functions than I am aware of being counted as uncovered. For instance, I have one file with 9 functions, no structs or derive annotations, and the coverage says the run covered 9 of 13 functions. When I examine the line-by-line html for that file, all 9 functions I can see are covered. How do I find out the names of these 4 functions I don't know I have? Do any of the output formats list uncovered functions by name?

This topic was automatically closed 90 days after the last reply. We invite you to open a new topic if you have further questions or comments.