pub type startElementSAXFunc = Option<unsafe extern "C" fn(ctx: *mut c_void, name: *const xmlChar, atts: *mut *const xmlChar)>;Expand description
startElementSAXFunc: @ctx: the user data (XML parser context) @name: The element name, including namespace prefix @atts: An array of name/value attributes pairs, NULL terminated
Called when an opening tag has been processed.
Aliased Type§
enum startElementSAXFunc {
None,
Some(unsafe extern "C" fn(_: *mut c_void, _: *const u8, _: *mut *const u8)),
}