Type Alias unparsedEntityDeclSAXFunc

Source
pub type unparsedEntityDeclSAXFunc = Option<unsafe extern "C" fn(ctx: *mut c_void, name: *const xmlChar, publicId: *const xmlChar, systemId: *const xmlChar, notationName: *const xmlChar)>;
Expand description

unparsedEntityDeclSAXFunc: @ctx: the user data (XML parser context) @name: The name of the entity @publicId: The public ID of the entity @systemId: The system ID of the entity @notationName: the name of the notation

What to do when an unparsed entity declaration is parsed.

Aliased Type§

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

Variants§

§1.0.0

None

No value.

§1.0.0

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

Some value of type T.