Serializing JSON objects depends on the outer type. Only arrays and dictionaries can be nested in json. The top‐level outer type is "NONE".

Synopsis

Declared in <rpc/util.h>

enum class OuterType : int;

Members

Name

Description

ARR

The value is nested inside a JSON array.

OBJ

The value is nested inside a JSON object.

NONE

The value is at the top level. Only set on first recursion.

Created with MrDocs