yaml 0.2.2
|
The node structure. More...
#include <yaml.h>
Data Fields | ||
yaml_node_type_t | type | |
The node type. | ||
yaml_char_t * | tag | |
The node tag. | ||
union { | ||
struct { | ||
yaml_char_t * value | ||
The scalar value. | ||
size_t length | ||
The length of the scalar value. | ||
yaml_scalar_style_t style | ||
The scalar style. | ||
} scalar | ||
The scalar parameters (for YAML_SCALAR_NODE ). | ||
struct { | ||
struct { | ||
yaml_node_item_t * start | ||
The beginning of the stack. | ||
yaml_node_item_t * end | ||
The end of the stack. | ||
yaml_node_item_t * top | ||
The top of the stack. | ||
} items | ||
The stack of sequence items. | ||
yaml_sequence_style_t style | ||
The sequence style. | ||
} sequence | ||
The sequence parameters (for YAML_SEQUENCE_NODE ). | ||
struct { | ||
struct { | ||
yaml_node_pair_t * start | ||
The beginning of the stack. | ||
yaml_node_pair_t * end | ||
The end of the stack. | ||
yaml_node_pair_t * top | ||
The top of the stack. | ||
} pairs | ||
The stack of mapping pairs (key, value). | ||
yaml_mapping_style_t style | ||
The mapping style. | ||
} mapping | ||
The mapping parameters (for YAML_MAPPING_NODE ). | ||
} | data | |
The node data. | ||
yaml_mark_t | start_mark | |
The beginning of the node. | ||
yaml_mark_t | end_mark | |
The end of the node. | ||
The node structure.