pub type notationDeclSAXFunc = Option<unsafe extern "C" fn(ctx: *mut c_void, name: *const xmlChar, publicId: *const xmlChar, systemId: *const xmlChar)>;Expand description
notationDeclSAXFunc: @ctx: the user data (XML parser context) @name: The name of the notation @publicId: The public ID of the entity @systemId: The system ID of the entity
What to do when a notation declaration has been parsed.
Aliased Type§
pub enum notationDeclSAXFunc {
None,
Some(unsafe extern "C" fn(*mut c_void, *const u8, *const u8, *const u8)),
}