Parse a value from a hex string. */
| 233 | Parse a value from a hex string. |
| 234 | */ |
| 235 | pub trait ParseHex { |
| 236 | /// Parse the value from hex. |
| 237 | fn parse_hex(input: &str) -> Result<Self, ParseError> |
| 238 | where |
| 239 | Self: Sized; |
| 240 | } |
| 241 | |
| 242 | /// An error encountered while parsing flags from text. |
| 243 | #[derive(Debug)] |
nothing calls this directly
no outgoing calls
no test coverage detected