Function winnow::number::streaming::i8

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

Recognizes a signed 1 byte integer

Note that endianness does not apply to 1 byte numbers. Partial version: Will return Err(winnow::error::ErrMode::Incomplete(_)) if there is not enough data.

use winnow::number::streaming::i8;

let parser = |s| {
  i8::<_, Error<_>>(s)
};

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

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