Type Definition libxml::bindings::entityDeclSAXFunc[][src]

type entityDeclSAXFunc = Option<unsafe extern "C" fn(ctx: *mut c_void, name: *const xmlChar, type_: c_int, publicId: *const xmlChar, systemId: *const xmlChar, content: *mut xmlChar)>;

entityDeclSAXFunc: @ctx: the user data (XML parser context) @name: the entity name @type: the entity type @publicId: The public ID of the entity @systemId: The system ID of the entity @content: the entity value (without processing).

An entity definition has been parsed.