pub type attributeSAXFunc = Option<unsafe extern "C" fn(ctx: *mut c_void, name: *const xmlChar, value: *const xmlChar)>;Expand description
Callback for attributes.
@deprecated This typedef is unused.
@param ctx the user data (XML parser context) @param name The attribute name, including namespace prefix @param value The attribute value
Aliased Type§
pub enum attributeSAXFunc {
None,
Some(unsafe extern "C" fn(*mut c_void, *const u8, *const u8)),
}