Function rocket::mtls::x509::der_parser::asn1_rs::nom::number::streaming::i8

source ·
pub fn i8<I, E>(i: I) -> Result<(I, i8), Err<E>>
where E: ParseError<I>, I: Slice<RangeFrom<usize>> + InputIter<Item = u8> + InputLength,
Available on crate feature mtls only.
Expand description

Recognizes a signed 1 byte integer

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

use nom::number::streaming::i8;

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

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