nom::multi

Function length_data

Source
pub fn length_data<I, E, F>(f: F) -> impl Parser<I, Output = I, Error = E>
where I: Input, <F as Parser<I>>::Output: ToUsize, F: Parser<I, Error = E>, E: ParseError<I>,
Expand description

Gets a number from the parser and returns a subslice of the input of that size. If the parser returns Incomplete, length_data will return an error.

ยงArguments

  • f The parser to apply.
use nom::number::complete::be_u16;
use nom::multi::length_data;
use nom::bytes::complete::tag;

fn parser(s: &[u8]) -> IResult<&[u8], &[u8]> {
  length_data(be_u16).parse(s)
}

assert_eq!(parser(b"\x00\x03abcefg"), Ok((&b"efg"[..], &b"abc"[..])));
assert_eq!(parser(b"\x00\x03a"), Err(Err::Incomplete(Needed::new(2))));