pub fn parse_json_array<'input_data: 'escaped_data, 'escaped_data>(
data: &'input_data [u8],
field_buffer: ParseBuffer<'_, JsonValue<'escaped_data>>,
string_escape_buffer: &mut StringBuffer<'escaped_data>,
) -> Result<(usize, usize), JsonParseFailure>Expand description
the core function that powers parsing in the JsonArray API. It attempts to parse the fields of a json object from the provided data slice into the provided parse buffer. returns (num bytes consumed,num values parsed) on success