pub type endElementNsSAX2Func = Option<unsafe extern "C" fn(ctx: *mut c_void, localname: *const xmlChar, prefix: *const xmlChar, URI: *const xmlChar)>;Expand description
endElementNsSAX2Func: @ctx: the user data (XML parser context) @localname: the local name of the element @prefix: the element namespace prefix if available @URI: the element namespace name if available
SAX2 callback when an element end has been detected by the parser. It provides the namespace information for the element.
Aliased Type§
pub enum endElementNsSAX2Func {
None,
Some(unsafe extern "C" fn(*mut c_void, *const u8, *const u8, *const u8)),
}