pub unsafe fn yaml_mapping_end_event_initialize(
event: *mut YamlEventT,
) -> SuccessExpand description
Create a MAPPING-END event.
This function initializes a YamlEventT struct with the type YamlMappingEndEvent.
It is used to signal the end of a mapping (key-value pairs) in the YAML document being emitted.
ยงSafety
eventmust be a valid, non-null pointer to aYamlEventTstruct that can be safely written to.- The
YamlEventTstruct must be properly aligned and have the expected memory layout.