pub unsafe fn yaml_emitter_dump_node(
emitter: *mut YamlEmitterT,
index: i32,
) -> SuccessExpand description
Dumps a YAML node to the emitter.
This function is responsible for emitting a single YAML node from a document.
ยงSafety
emittermust be a valid, non-null pointer to an initializedYamlEmitterTstruct.indexmust be a valid index within the YAML document associated with the emitter.- The caller must ensure that the node at
indexcan be safely emitted without causing memory issues.