pub fn parse_with_buffer<'a, T>(
input: &[u8],
output_buffer: &'a mut [u8],
) -> Result<T, CommonError>where
T: Deserialize<'a>,Expand description
High-performance JSON parsing with pooled buffers
This function is designed to work with the memory pool infrastructure. It parses JSON from the provided slice into the output buffer.