pub fn parse_json_value_no_duplicates(json: &[u8]) -> Result<Value, JcsError>Expand description
Parse untrusted JSON bytes, rejecting duplicate property names and
I-JSON-forbidden code points, enforcing MAX_NESTING_DEPTH.
ยงErrors
JcsError::Jsonfor malformed JSON or duplicate property names.JcsError::InvalidStringfor forbidden noncharacters.JcsError::NestingDepthExceededfor depth limit breach.