Function parse_to_borrowed_value

Source
pub fn parse_to_borrowed_value(
    buffer: &mut [u8],
) -> Result<BorrowedValue<'_>, CommonError>
Expand description

Zero-copy JSON parsing to borrowed value

This returns a BorrowedValue that references the input buffer. Use this when you need to inspect JSON structure without deserializing to a concrete type.