pub fn u32<I, E: ParseError<I>>(
endian: Endianness
) -> fn(_: I) -> IResult<I, u32, E>where
I: Stream<Token = u8>,
<I as Stream>::Slice: AsBytes,👎Deprecated since 0.1.0: Replaced with <code>winnow::number::u32</code> with input wrapped in <code>winnow::Partial</code>
Expand description
Recognizes an unsigned 4 byte integer
If the parameter is winnow::number::Endianness::Big, parse a big endian u32 integer,
otherwise if winnow::number::Endianness::Little parse a little endian u32 integer.
Partial version: Will return Err(winnow::error::ErrMode::Incomplete(_)) if there is not enough data.
use winnow::number::streaming::u32;
let be_u32 = |s| {
u32::<_, Error<_>>(winnow::number::Endianness::Big)(s)
};
assert_eq!(be_u32(&b"\x00\x03\x05\x07abcefg"[..]), Ok((&b"abcefg"[..], 0x00030507)));
assert_eq!(be_u32(&b"\x01"[..]), Err(ErrMode::Incomplete(Needed::new(3))));
let le_u32 = |s| {
u32::<_, Error<_>>(winnow::number::Endianness::Little)(s)
};
assert_eq!(le_u32(&b"\x00\x03\x05\x07abcefg"[..]), Ok((&b"abcefg"[..], 0x07050300)));
assert_eq!(le_u32(&b"\x01"[..]), Err(ErrMode::Incomplete(Needed::new(3))));WARNING: Deprecated, replaced with winnow::number::u32 with input wrapped in winnow::Partial