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§
pub enum startElementSAXFunc {
None,
Some(unsafe extern "C" fn(*mut c_void, *const u8, *mut *const u8)),
}