pub type attributeDeclSAXFunc = Option<unsafe extern "C" fn(ctx: *mut c_void, elem: *const xmlChar, fullname: *const xmlChar, type_: c_int, def: c_int, defaultValue: *const xmlChar, tree: xmlEnumerationPtr)>;Expand description
attributeDeclSAXFunc: @ctx: the user data (XML parser context) @elem: the name of the element @fullname: the attribute name @type: the attribute type @def: the type of default value @defaultValue: the attribute default value @tree: the tree of enumerated value set
An attribute definition has been parsed.
Aliased Type§
enum attributeDeclSAXFunc {
None,
Some(unsafe extern "C" fn(_: *mut c_void, _: *const u8, _: *const u8, _: i32, _: i32, _: *const u8, _: *mut _xmlEnumeration)),
}