Function nom8::number::be_u32

source ·
pub fn be_u32<I, E: ParseError<I>, const STREAMING: bool>(
    input: I
) -> IResult<I, u32, E>where
    I: Slice<RangeFrom<usize>> + InputIter<Item = u8> + InputLength + InputIsStreaming<STREAMING>,
Expand description

Recognizes a big endian unsigned 4 bytes integer.

Complete version: Returns an error if there is not enough input data.

Streaming version: Will return Err(nom8::Err::Incomplete(_)) if there is not enough data.

Example

use nom8::number::be_u32;

let parser = |s| {
  be_u32(s)
};

assert_eq!(parser(&b"\x00\x03\x05\x07abcefg"[..]), Ok((&b"abcefg"[..], 0x00030507)));
assert_eq!(parser(&b"\x01"[..]), Err(Err::Error((&[0x01][..], ErrorKind::Eof))));
use nom8::number::be_u32;

let parser = |s| {
  be_u32::<_, (_, ErrorKind), true>(s)
};

assert_eq!(parser(Streaming(&b"\x00\x01\x02\x03abcd"[..])), Ok((Streaming(&b"abcd"[..]), 0x00010203)));
assert_eq!(parser(Streaming(&b"\x01"[..])), Err(Err::Incomplete(Needed::new(3))));