(&self, f: &mut fmt::Formatter)
| 49 | // Not required: Add formatting support |
| 50 | impl fmt::Display for ManualFlags { |
| 51 | fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { |
| 52 | bitflags::parser::to_writer(self, f) |
| 53 | } |
| 54 | } |
| 55 | |
| 56 | fn main() { |
nothing calls this directly
no test coverage detected