Function hex_u32
fn hex_u32<I, E: ParseError<I>>(input: I) -> IResult<I, u32, E>
where
I: Input + AsBytes,
<I as Input>::Item: AsChar
Recognizes a hex-encoded integer.
Streaming version: Will return Err(nom::Err::Incomplete(_)) if there is not enough data.
# use ;
use hex_u32;
let parser = ;
assert_eq!;
assert_eq!;
assert_eq!;