pub fn parse_prefixed_int<T>(input: &str) -> Result<T>where T: Num, <T as Num>::FromStrRadixErr: Display,
Parses a 0x-prefixed hex integer, e.g. 0x1a.
0x
0x1a
A sign is rejected for every T, matching Go’s strconv.ParseUint.
T
strconv.ParseUint