pub type referenceSAXFunc = Option<unsafe extern "C" fn(ctx: *mut c_void, name: *const xmlChar)>;Expand description
referenceSAXFunc: @ctx: the user data (XML parser context) @name: The entity name
Called when an entity reference is detected.
Aliased Type§
enum referenceSAXFunc {
None,
Some(unsafe extern "C" fn(_: *mut c_void, _: *const u8)),
}