Type Alias entityDeclSAXFunc

Source
pub 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)>;
Expand description

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.

Aliased Type§

enum entityDeclSAXFunc {
    None,
    Some(unsafe extern "C" fn(_: *mut c_void, _: *const u8, _: i32, _: *const u8, _: *const u8, _: *mut u8)),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(unsafe extern "C" fn(_: *mut c_void, _: *const u8, _: i32, _: *const u8, _: *const u8, _: *mut u8))

Some value of type T.