(flags: &str)
| 31 | type Err = bitflags::parser::ParseError; |
| 32 | |
| 33 | fn from_str(flags: &str) -> Result<Self, Self::Err> { |
| 34 | bitflags::parser::from_str(flags) |
| 35 | } |
| 36 | } |
| 37 | |
| 38 | fn main() -> Result<(), bitflags::parser::ParseError> { |
nothing calls this directly
no test coverage detected