#[unsafe(no_mangle)]pub unsafe extern "C" fn xmlSaveTree(
ctxt: *mut _xmlSaveCtxt,
node: *mut _xmlNode,
) -> c_longExpand description
Serialize a node tree into the save context’s output buffer.
Returns the number of bytes written, or -1 on error.
§SAFETY
ctxtmust be a valid save context.nodemust be a valid node or NULL.