Function u128

Source
pub fn u128<Input, Error>(endian: Endianness) -> impl Parser<Input, u128, Error>
where Input: StreamIsPartial + Stream<Token = u8>, Error: ParserError<Input>,
Expand description

Recognizes an unsigned 16 byte integer

If the parameter is winnow::binary::Endianness::Big, parse a big endian u128 integer, otherwise if winnow::binary::Endianness::Little parse a little endian u128 integer.

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

[Partial version][crate::_topic::partial]: Will return Err(winnow::error::ErrMode::Incomplete(_)) if there is not enough data.

§Example

use winnow::binary::u128;

fn be_u128(input: &mut &[u8]) -> ModalResult<u128> {
    u128(winnow::binary::Endianness::Big).parse_next(input)
};

assert_eq!(be_u128.parse_peek(&b"\x00\x01\x02\x03\x04\x05\x06\x07\x00\x01\x02\x03\x04\x05\x06\x07abcefg"[..]), Ok((&b"abcefg"[..], 0x00010203040506070001020304050607)));
assert!(be_u128.parse_peek(&b"\x01"[..]).is_err());

fn le_u128(input: &mut &[u8]) -> ModalResult<u128> {
    u128(winnow::binary::Endianness::Little).parse_next(input)
};

assert_eq!(le_u128.parse_peek(&b"\x00\x01\x02\x03\x04\x05\x06\x07\x00\x01\x02\x03\x04\x05\x06\x07abcefg"[..]), Ok((&b"abcefg"[..], 0x07060504030201000706050403020100)));
assert!(le_u128.parse_peek(&b"\x01"[..]).is_err());
use winnow::binary::u128;

fn be_u128(input: &mut Partial<&[u8]>) -> ModalResult<u128> {
    u128(winnow::binary::Endianness::Big).parse_next(input)
};

assert_eq!(be_u128.parse_peek(Partial::new(&b"\x00\x01\x02\x03\x04\x05\x06\x07\x00\x01\x02\x03\x04\x05\x06\x07abcefg"[..])), Ok((Partial::new(&b"abcefg"[..]), 0x00010203040506070001020304050607)));
assert_eq!(be_u128.parse_peek(Partial::new(&b"\x01"[..])), Err(ErrMode::Incomplete(Needed::new(15))));

fn le_u128(input: &mut Partial<&[u8]>) -> ModalResult<u128> {
    u128(winnow::binary::Endianness::Little).parse_next(input)
};

assert_eq!(le_u128.parse_peek(Partial::new(&b"\x00\x01\x02\x03\x04\x05\x06\x07\x00\x01\x02\x03\x04\x05\x06\x07abcefg"[..])), Ok((Partial::new(&b"abcefg"[..]), 0x07060504030201000706050403020100)));
assert_eq!(le_u128.parse_peek(Partial::new(&b"\x01"[..])), Err(ErrMode::Incomplete(Needed::new(15))));