Function winnow::number::streaming::u16

source ·
pub fn u16<I, E: ParseError<I>>(
    endian: Endianness
) -> fn(_: I) -> IResult<I, u16, E>where
    I: Stream<Token = u8>,
    <I as Stream>::Slice: AsBytes,
👎Deprecated since 0.1.0: Replaced with <code>winnow::number::u16</code> with input wrapped in <code>winnow::Partial</code>
Expand description

Recognizes an unsigned 2 bytes integer

If the parameter is winnow::number::Endianness::Big, parse a big endian u16 integer, otherwise if winnow::number::Endianness::Little parse a little endian u16 integer. Partial version: Will return Err(winnow::error::ErrMode::Incomplete(_)) if there is not enough data.

use winnow::number::streaming::u16;

let be_u16 = |s| {
  u16::<_, Error<_>>(winnow::number::Endianness::Big)(s)
};

assert_eq!(be_u16(&b"\x00\x03abcefg"[..]), Ok((&b"abcefg"[..], 0x0003)));
assert_eq!(be_u16(&b"\x01"[..]), Err(ErrMode::Incomplete(Needed::new(1))));

let le_u16 = |s| {
  u16::<_, Error<_>>(winnow::number::Endianness::Little)(s)
};

assert_eq!(le_u16(&b"\x00\x03abcefg"[..]), Ok((&b"abcefg"[..], 0x0300)));
assert_eq!(le_u16(&b"\x01"[..]), Err(ErrMode::Incomplete(Needed::new(1))));

WARNING: Deprecated, replaced with winnow::number::u16 with input wrapped in winnow::Partial