Type Alias endElementNsSAX2Func

Source
pub type endElementNsSAX2Func = Option<unsafe extern "C" fn(ctx: *mut c_void, localname: *const xmlChar, prefix: *const xmlChar, URI: *const xmlChar)>;
Expand description

endElementNsSAX2Func: @ctx: the user data (XML parser context) @localname: the local name of the element @prefix: the element namespace prefix if available @URI: the element namespace name if available

SAX2 callback when an element end has been detected by the parser. It provides the namespace information for the element.

Aliased Type§

enum endElementNsSAX2Func {
    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.