Type Definition libxml::bindings::attributeSAXFunc[][src]

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

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

Handle an attribute that has been read by the parser. The default handling is to convert the attribute into an DOM subtree and past it in a new xmlAttr element added to the element.