:orphan: .. index:: pair: struct; te_json_ctx_t .. _doxid-structte__json__ctx__t: struct te_json_ctx_t ==================== .. toctree:: :hidden: Overview ~~~~~~~~ The context for JSON serialization. :ref:`More...` .. ref-code-block:: cpp :class: doxyrest-overview-code-block #include struct te_json_ctx_t { // fields :ref:`te_json_out_loc_t` :ref:`out_loc`; :ref:`te_json_out_t` :ref:`out_type`; :ref:`te_json_level_t` :ref:`nesting`[TE_JSON_MAX_NEST]; size_t :ref:`current_level`; }; .. _details-structte__json__ctx__t: Detailed Documentation ~~~~~~~~~~~~~~~~~~~~~~ The context for JSON serialization. While the structure is declared public to make on-stack variables possible, it shall be treated as an opaque and only initialized with TE_JSON_INIT_STR() and then passed to the API from this group. Fields ------ .. index:: pair: variable; out_loc .. _doxid-structte__json__ctx__t_1ae82e6f02f9e7591035c0340eb5393ae1: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_json_out_loc_t` out_loc where to write JSON .. index:: pair: variable; out_type .. _doxid-structte__json__ctx__t_1a8a9d0546fae3139c86cf16e127733c30: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_json_out_t` out_type type of output destination .. index:: pair: variable; nesting .. _doxid-structte__json__ctx__t_1a435095999565fdd616387f8517f24ead: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_json_level_t` nesting[TE_JSON_MAX_NEST] stack of nested JSON compounds .. index:: pair: variable; current_level .. _doxid-structte__json__ctx__t_1a4b60c052f31ee16e7cb5f290bc3c129e: .. ref-code-block:: cpp :class: doxyrest-title-code-block size_t current_level current nesting depth