Type Alias internalSubsetSAXFunc

Source
pub type internalSubsetSAXFunc = Option<unsafe extern "C" fn(ctx: *mut c_void, name: *const xmlChar, ExternalID: *const xmlChar, SystemID: *const xmlChar)>;
Expand description

internalSubsetSAXFunc: @ctx: the user data (XML parser context) @name: the root element name @ExternalID: the external ID @SystemID: the SYSTEM ID (e.g. filename or URL)

Callback on internal subset declaration.

Aliased Type§

enum internalSubsetSAXFunc {
    None,
    Some(unsafe extern "C" fn(_: *mut c_void, _: *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))

Some value of type T.