Skip to main content

attributeSAXFunc

Type Alias attributeSAXFunc 

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

Callback for attributes.

@deprecated This typedef is unused.

@param ctx the user data (XML parser context) @param name The attribute name, including namespace prefix @param value The attribute value

Aliased Type§

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

Some value of type T.