Function nom8::number::be_u16

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

Recognizes a big endian unsigned 2 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_u16;

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

assert_eq!(parser(&b"\x00\x03abcefg"[..]), Ok((&b"abcefg"[..], 0x0003)));
assert_eq!(parser(&b"\x01"[..]), Err(Err::Error((&[0x01][..], ErrorKind::Eof))));
use nom8::number::be_u16;

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

assert_eq!(parser(Streaming(&b"\x00\x01abcd"[..])), Ok((Streaming(&b"abcd"[..]), 0x0001)));
assert_eq!(parser(Streaming(&b"\x01"[..])), Err(Err::Incomplete(Needed::new(1))));