Skip to main content

attributeDeclSAXFunc

Type Alias attributeDeclSAXFunc 

Source
pub type attributeDeclSAXFunc = Option<unsafe extern "C" fn(ctx: *mut c_void, elem: *const xmlChar, fullname: *const xmlChar, type_: c_int, def: c_int, defaultValue: *const xmlChar, tree: *mut xmlEnumeration)>;
Expand description

SAX callback for attribute declarations.

@param ctx the user data (XML parser context) @param elem the name of the element @param fullname the attribute name @param type the attribute type @param def the type of default value @param defaultValue the attribute default value @param tree the tree of enumerated value set

Aliased Type§

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

Variants§

§1.0.0

None

No value.

§1.0.0

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

Some value of type T.