(input: &str)
| 42 | type Err = bitflags::parser::ParseError; |
| 43 | |
| 44 | fn from_str(input: &str) -> Result<Self, Self::Err> { |
| 45 | bitflags::parser::from_str(input) |
| 46 | } |
| 47 | } |
| 48 | |
| 49 | // Not required: Add formatting support |
nothing calls this directly
no test coverage detected