startElementSAXFunc

Type Alias startElementSAXFunc 

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

startElementSAXFunc: @ctx: the user data (XML parser context) @name: The element name, including namespace prefix @atts: An array of name/value attributes pairs, NULL terminated

Called when an opening tag has been processed.

Aliased Type§

pub enum startElementSAXFunc {
    None,
    Some(unsafe extern "C" fn(*mut c_void, *const u8, *mut *const u8)),
}

Variants§

§1.0.0

None

No value.

§1.0.0

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

Some value of type T.