pub fn u8<I, E: ParseError<I>>(input: I) -> IResult<I, u8, E>where
I: Slice<RangeFrom<usize>> + InputIter<Item = u8> + InputLength,
👎Deprecated since 8.0.0: Replaced with
nom8::number::u8
Expand description
Recognizes an unsigned 1 byte integer
Note that endianness does not apply to 1 byte numbers. complete version: returns an error if there is not enough input data
use nom8::number::complete::u8;
let parser = |s| {
u8(s)
};
assert_eq!(parser(&b"\x00\x03abcefg"[..]), Ok((&b"\x03abcefg"[..], 0x00)));
assert_eq!(parser(&b""[..]), Err(Err::Error((&[][..], ErrorKind::Eof))));
WARNING: Deprecated, replaced with nom8::number::u8