Function nom::multi::length_data [−][src]
pub fn length_data<I, N, E, F>(f: F) -> impl Fn(I) -> IResult<I, I, E> where
I: Clone + InputLength + InputTake,
N: Copy + ToUsize,
F: Fn(I) -> IResult<I, N, E>,
E: ParseError<I>,
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)(s) } assert_eq!(parser(b"\x00\x03abcefg"), Ok((&b"efg"[..], &b"abc"[..]))); assert_eq!(parser(b"\x00\x03"), Err(Err::Incomplete(Size(3))));