#[unsafe(no_mangle)]pub unsafe extern "C" fn xmlParserError(
ctx: *mut c_void,
msg: *const c_char,
)Expand description
Default SAX v1 error handler — void xmlParserError(void *ctx, const char *msg, ...).
§SAFETY
ctxmay be NULL (unused by the candidate’s legacy path).msgmust be a valid NUL-terminated C string or NULL.