Type Alias xmlExternalEntityLoader

Source
pub type xmlExternalEntityLoader = Option<unsafe extern "C" fn(URL: *const c_char, ID: *const c_char, context: xmlParserCtxtPtr) -> xmlParserInputPtr>;
Expand description

xmlExternalEntityLoader: @URL: The System ID of the resource requested @ID: The Public ID of the resource requested @context: the XML parser context

External entity loaders types.

Returns the entity input parser.

Aliased Type§

enum xmlExternalEntityLoader {
    None,
    Some(unsafe extern "C" fn(_: *const i8, _: *const i8, _: *mut _xmlParserCtxt) -> *mut _xmlParserInput),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(unsafe extern "C" fn(_: *const i8, _: *const i8, _: *mut _xmlParserCtxt) -> *mut _xmlParserInput)

Some value of type T.