Skip to main content

externalSubsetSAXFunc

Type Alias externalSubsetSAXFunc 

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

SAX callback for the external subset.

@param ctx the user data (XML parser context) @param name the root element name @param publicId the public identifier @param systemId the system identifier (e.g. filename or URL)

Aliased Type§

pub enum externalSubsetSAXFunc {
    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.